| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 60         '<@(core_library_files)', | 60         '<@(core_library_files)', | 
| 61         '--', | 61         '--', | 
| 62         '<@(additional_library_files)', | 62         '<@(additional_library_files)', | 
| 63         '<@(_outputs)', | 63         '<@(_outputs)', | 
| 64       ] | 64       ] | 
| 65     }] | 65     }] | 
| 66   }, | 66   }, | 
| 67   { | 67   { | 
| 68     'target_name': 'tests', | 68     'target_name': 'tests', | 
| 69     'type': 'executable', | 69     'type': 'executable', | 
|  | 70     'defines': ['FILTER_ENGINE_STUBS=1'], | 
| 70     'dependencies': [ | 71     'dependencies': [ | 
| 71       'third_party/googletest.gyp:googletest_main', | 72       'third_party/googletest.gyp:googletest_main', | 
| 72       'libadblockplus' | 73       'libadblockplus' | 
| 73     ], | 74     ], | 
| 74     'sources': [ | 75     'sources': [ | 
| 75       'test/ConsoleJsObject.cpp', | 76       'test/ConsoleJsObject.cpp', | 
| 76       'test/FilterEngineStubs.cpp', | 77       'test/FilterEngineStubs.cpp', | 
| 77       'test/JsEngine.cpp', | 78       'test/JsEngine.cpp', | 
| 78       'test/Thread.cpp' | 79       'test/Thread.cpp' | 
| 79     ] | 80     ] | 
| 80   }] | 81   }] | 
| 81 } | 82 } | 
| OLD | NEW | 
|---|