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/ConsoleJsObject.cpp', | 20 'src/ConsoleJsObject.cpp', |
21 'src/ErrorCallback.cpp', | 21 'src/ErrorCallback.cpp', |
22 'src/FileReader.cpp', | 22 'src/FileSystemJsObject.cpp', |
23 'src/FilterEngine.cpp', | 23 'src/FilterEngine.cpp', |
24 'src/GlobalJsObject.cpp', | 24 'src/GlobalJsObject.cpp', |
25 'src/JsEngine.cpp', | 25 'src/JsEngine.cpp', |
26 'src/Thread.cpp', | 26 'src/Thread.cpp', |
| 27 'src/Utils.cpp', |
27 'src/WebRequest.cpp', | 28 'src/WebRequest.cpp', |
28 'src/WebRequestJsObject.cpp', | 29 'src/WebRequestJsObject.cpp', |
29 '<(INTERMEDIATE_DIR)/adblockplus.js.cc' | 30 '<(INTERMEDIATE_DIR)/adblockplus.js.cc' |
30 ], | 31 ], |
31 'direct_dependent_settings': { | 32 'direct_dependent_settings': { |
32 'include_dirs': ['include'] | 33 'include_dirs': ['include'] |
33 }, | 34 }, |
34 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], | 35 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], |
35 'conditions': [ | 36 'conditions': [ |
36 ['have_curl==1', | 37 ['have_curl==1', |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 }, | 86 }, |
86 { | 87 { |
87 'target_name': 'tests', | 88 'target_name': 'tests', |
88 'type': 'executable', | 89 'type': 'executable', |
89 'dependencies': [ | 90 'dependencies': [ |
90 'third_party/googletest.gyp:googletest_main', | 91 'third_party/googletest.gyp:googletest_main', |
91 'libadblockplus' | 92 'libadblockplus' |
92 ], | 93 ], |
93 'sources': [ | 94 'sources': [ |
94 'test/ConsoleJsObject.cpp', | 95 'test/ConsoleJsObject.cpp', |
| 96 'test/FileSystemJsObject.cpp', |
95 'test/FilterEngineStubs.cpp', | 97 'test/FilterEngineStubs.cpp', |
96 'test/GlobalJsObject.cpp', | 98 'test/GlobalJsObject.cpp', |
97 'test/JsEngine.cpp', | 99 'test/JsEngine.cpp', |
98 'test/Thread.cpp', | 100 'test/Thread.cpp', |
99 'test/WebRequest.cpp' | 101 'test/WebRequest.cpp' |
100 ] | 102 ] |
101 }] | 103 }] |
102 } | 104 } |
OLD | NEW |