OLD | NEW |
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 'target_name': 'tests', | 68 'target_name': 'tests', |
69 'type': 'executable', | 69 'type': 'executable', |
70 'defines': ['FILTER_ENGINE_STUBS=1'], | 70 'defines': ['FILTER_ENGINE_STUBS=1'], |
71 'dependencies': [ | 71 'dependencies': [ |
72 'third_party/googletest.gyp:googletest_main', | 72 'third_party/googletest.gyp:googletest_main', |
73 'libadblockplus' | 73 'libadblockplus' |
74 ], | 74 ], |
75 'sources': [ | 75 'sources': [ |
76 'test/ConsoleJsObject.cpp', | 76 'test/ConsoleJsObject.cpp', |
77 'test/FilterEngineStubs.cpp', | 77 'test/FilterEngineStubs.cpp', |
| 78 'test/GlobalJsObject.cpp', |
78 'test/JsEngine.cpp', | 79 'test/JsEngine.cpp', |
79 'test/Thread.cpp' | 80 'test/Thread.cpp' |
80 ] | 81 ] |
81 }] | 82 }] |
82 } | 83 } |
OLD | NEW |