LEFT | RIGHT |
1 { | 1 { |
2 'includes': ['third_party/v8/build/common.gypi', | 2 'includes': ['third_party/v8/build/common.gypi', |
3 'shell/shell.gyp'], | 3 'shell/shell.gyp'], |
4 'targets': [{ | 4 'targets': [{ |
5 'target_name': 'libadblockplus', | 5 'target_name': 'libadblockplus', |
6 'type': '<(library)', | 6 'type': '<(library)', |
7 'include_dirs': [ | 7 'include_dirs': [ |
8 'include', | 8 'include', |
9 'third_party/v8/include' | 9 'third_party/v8/include' |
10 ], | 10 ], |
(...skipping 12 matching lines...) Expand all Loading... |
23 }, | 23 }, |
24 { | 24 { |
25 'target_name': 'tests', | 25 'target_name': 'tests', |
26 'type': 'executable', | 26 'type': 'executable', |
27 'dependencies': [ | 27 'dependencies': [ |
28 'third_party/googletest.gyp:googletest_main', | 28 'third_party/googletest.gyp:googletest_main', |
29 'libadblockplus' | 29 'libadblockplus' |
30 ], | 30 ], |
31 'sources': [ | 31 'sources': [ |
32 'test/ConsoleJsObject.cpp', | 32 'test/ConsoleJsObject.cpp', |
| 33 'test/FilterEngineStubs.cpp', |
33 'test/JsEngine.cpp' | 34 'test/JsEngine.cpp' |
34 ] | 35 ] |
35 }] | 36 }] |
36 } | 37 } |
LEFT | RIGHT |