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/GlobalJsObject.cpp', |
19 'src/JsEngine.cpp', | 19 'src/JsEngine.cpp', |
20 'src/Thread.cpp', | 20 'src/Thread.cpp', |
| 21 'src/WebRequest.cpp', |
| 22 'src/WebRequestJsObject.cpp', |
21 '<(INTERMEDIATE_DIR)/adblockplus.js.cc' | 23 '<(INTERMEDIATE_DIR)/adblockplus.js.cc' |
22 ], | 24 ], |
23 'direct_dependent_settings': { | 25 'direct_dependent_settings': { |
24 'include_dirs': ['include'] | 26 'include_dirs': ['include'] |
25 }, | 27 }, |
26 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], | 28 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], |
27 'actions': [{ | 29 'actions': [{ |
28 'action_name': 'convert_js', | 30 'action_name': 'convert_js', |
29 'variables': { | 31 'variables': { |
30 'core_library_files': [ | 32 'core_library_files': [ |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 'defines': ['FILTER_ENGINE_STUBS=1'], | 72 'defines': ['FILTER_ENGINE_STUBS=1'], |
71 'dependencies': [ | 73 'dependencies': [ |
72 'third_party/googletest.gyp:googletest_main', | 74 'third_party/googletest.gyp:googletest_main', |
73 'libadblockplus' | 75 'libadblockplus' |
74 ], | 76 ], |
75 'sources': [ | 77 'sources': [ |
76 'test/ConsoleJsObject.cpp', | 78 'test/ConsoleJsObject.cpp', |
77 'test/FilterEngineStubs.cpp', | 79 'test/FilterEngineStubs.cpp', |
78 'test/GlobalJsObject.cpp', | 80 'test/GlobalJsObject.cpp', |
79 'test/JsEngine.cpp', | 81 'test/JsEngine.cpp', |
80 'test/Thread.cpp' | 82 'test/Thread.cpp', |
| 83 'test/WebRequest.cpp' |
81 ] | 84 ] |
82 }] | 85 }] |
83 } | 86 } |
OLD | NEW |