| 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 'defines': ['FILTER_ENGINE_STUBS=1'], |
| 12 'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'], | 12 'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'], |
| 13 'sources': [ | 13 'sources': [ |
| 14 'src/ConsoleJsObject.cpp', | 14 'src/ConsoleJsObject.cpp', |
| 15 'src/ErrorCallback.cpp', | 15 'src/ErrorCallback.cpp', |
| 16 'src/FileReader.cpp', | 16 'src/FileReader.cpp', |
| 17 'src/FilterEngine.cpp', | 17 'src/FilterEngine.cpp', |
| 18 'src/GlobalJsObject.cpp', |
| 18 'src/JsEngine.cpp', | 19 'src/JsEngine.cpp', |
| 19 'src/Thread.cpp', | 20 'src/Thread.cpp', |
| 20 '<(INTERMEDIATE_DIR)/adblockplus.js.cc' | 21 '<(INTERMEDIATE_DIR)/adblockplus.js.cc' |
| 21 ], | 22 ], |
| 22 'direct_dependent_settings': { | 23 'direct_dependent_settings': { |
| 23 'include_dirs': ['include'] | 24 'include_dirs': ['include'] |
| 24 }, | 25 }, |
| 25 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], | 26 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], |
| 26 'actions': [{ | 27 'actions': [{ |
| 27 'action_name': 'convert_js', | 28 'action_name': 'convert_js', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 'libadblockplus' | 72 'libadblockplus' |
| 72 ], | 73 ], |
| 73 'sources': [ | 74 'sources': [ |
| 74 'test/ConsoleJsObject.cpp', | 75 'test/ConsoleJsObject.cpp', |
| 75 'test/FilterEngineStubs.cpp', | 76 'test/FilterEngineStubs.cpp', |
| 76 'test/JsEngine.cpp', | 77 'test/JsEngine.cpp', |
| 77 'test/Thread.cpp' | 78 'test/Thread.cpp' |
| 78 ] | 79 ] |
| 79 }] | 80 }] |
| 80 } | 81 } |
| OLD | NEW |