| OLD | NEW |
| 1 { | 1 { |
| 2 'variables': { | 2 'variables': { |
| 3 'have_curl': '<!(python check_curl.py)' | 3 'have_curl': '<!(python check_curl.py)' |
| 4 }, | 4 }, |
| 5 'includes': ['third_party/v8/build/common.gypi', | 5 'includes': ['third_party/v8/build/common.gypi', |
| 6 'shell/shell.gyp'], | 6 'shell/shell.gyp'], |
| 7 'targets': [{ | 7 'targets': [{ |
| 8 'target_name': 'libadblockplus', | 8 'target_name': 'libadblockplus', |
| 9 'type': '<(library)', | 9 'type': '<(library)', |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| 11 'include', | 11 'include', |
| 12 'third_party/v8/include' | 12 'third_party/v8/include' |
| 13 ], | 13 ], |
| 14 'defines': ['FILTER_ENGINE_STUBS=1'], | 14 'defines': ['FILTER_ENGINE_STUBS=1'], |
| 15 'all_dependent_settings': { | 15 'all_dependent_settings': { |
| 16 'defines': ['FILTER_ENGINE_STUBS=1'] | 16 'defines': ['FILTER_ENGINE_STUBS=1'] |
| 17 }, | 17 }, |
| 18 'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'], | 18 'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'], |
| 19 'sources': [ | 19 'sources': [ |
| 20 'src/AppInfoJsObject.cpp', | 20 'src/AppInfoJsObject.cpp', |
| 21 'src/ConsoleJsObject.cpp', | 21 'src/ConsoleJsObject.cpp', |
| 22 'src/DefaultErrorCallback.cpp', |
| 22 'src/DefaultFileSystem.cpp', | 23 'src/DefaultFileSystem.cpp', |
| 23 'src/ErrorCallback.cpp', | 24 'src/ErrorCallback.cpp', |
| 24 'src/FileSystemJsObject.cpp', | 25 'src/FileSystemJsObject.cpp', |
| 25 'src/FilterEngine.cpp', | 26 'src/FilterEngine.cpp', |
| 26 'src/GlobalJsObject.cpp', | 27 'src/GlobalJsObject.cpp', |
| 27 'src/JsEngine.cpp', | 28 'src/JsEngine.cpp', |
| 28 'src/JsValue.cpp', | 29 'src/JsValue.cpp', |
| 29 'src/Thread.cpp', | 30 'src/Thread.cpp', |
| 30 'src/Utils.cpp', | 31 'src/Utils.cpp', |
| 31 'src/WebRequestJsObject.cpp', | 32 'src/WebRequestJsObject.cpp', |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 'test/FileSystemJsObject.cpp', | 114 'test/FileSystemJsObject.cpp', |
| 114 'test/FilterEngineStubs.cpp', | 115 'test/FilterEngineStubs.cpp', |
| 115 'test/GlobalJsObject.cpp', | 116 'test/GlobalJsObject.cpp', |
| 116 'test/JsEngine.cpp', | 117 'test/JsEngine.cpp', |
| 117 'test/JsValue.cpp', | 118 'test/JsValue.cpp', |
| 118 'test/Thread.cpp', | 119 'test/Thread.cpp', |
| 119 'test/WebRequest.cpp' | 120 'test/WebRequest.cpp' |
| 120 ] | 121 ] |
| 121 }] | 122 }] |
| 122 } | 123 } |
| OLD | NEW |