| 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     ], | 
|  | 11     'defines': ['FILTER_ENGINE_STUBS=1'], | 
| 11     'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'], | 12     'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'], | 
| 12     'sources': [ | 13     'sources': [ | 
| 13       'src/ConsoleJsObject.cpp', | 14       'src/ConsoleJsObject.cpp', | 
| 14       'src/ErrorCallback.cpp', | 15       'src/ErrorCallback.cpp', | 
| 15       'src/FileReader.cpp', | 16       'src/FileReader.cpp', | 
| 16       'src/FilterEngine.cpp', | 17       'src/FilterEngine.cpp', | 
| 17       'src/JsEngine.cpp', | 18       'src/JsEngine.cpp', | 
| 18       'src/Thread.cpp', | 19       'src/Thread.cpp', | 
| 19       '<(INTERMEDIATE_DIR)/adblockplus.js.cc' | 20       '<(INTERMEDIATE_DIR)/adblockplus.js.cc' | 
| 20     ], | 21     ], | 
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 70       'libadblockplus' | 71       'libadblockplus' | 
| 71     ], | 72     ], | 
| 72     'sources': [ | 73     'sources': [ | 
| 73       'test/ConsoleJsObject.cpp', | 74       'test/ConsoleJsObject.cpp', | 
| 74       'test/FilterEngineStubs.cpp', | 75       'test/FilterEngineStubs.cpp', | 
| 75       'test/JsEngine.cpp', | 76       'test/JsEngine.cpp', | 
| 76       'test/Thread.cpp' | 77       'test/Thread.cpp' | 
| 77     ] | 78     ] | 
| 78   }] | 79   }] | 
| 79 } | 80 } | 
| OLD | NEW | 
|---|