LEFT | RIGHT |
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=0'], | 14 'defines': ['FILTER_ENGINE_STUBS=0'], |
15 'all_dependent_settings': { | 15 'all_dependent_settings': { |
16 'defines': ['FILTER_ENGINE_STUBS=0'] | 16 'defines': ['FILTER_ENGINE_STUBS=0'] |
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/DefaultFileSystem.cpp', |
21 'src/ErrorCallback.cpp', | 22 'src/ErrorCallback.cpp', |
22 'src/FileReader.cpp', | 23 'src/FileSystemJsObject.cpp', |
23 'src/FilterEngine.cpp', | 24 'src/FilterEngine.cpp', |
24 'src/GlobalJsObject.cpp', | 25 'src/GlobalJsObject.cpp', |
25 'src/JsEngine.cpp', | 26 'src/JsEngine.cpp', |
26 'src/JsValue.cpp', | 27 'src/JsValue.cpp', |
27 'src/Thread.cpp', | 28 'src/Thread.cpp', |
| 29 'src/Utils.cpp', |
28 'src/WebRequestJsObject.cpp', | 30 'src/WebRequestJsObject.cpp', |
29 '<(INTERMEDIATE_DIR)/adblockplus.js.cc' | 31 '<(INTERMEDIATE_DIR)/adblockplus.js.cc' |
30 ], | 32 ], |
31 'direct_dependent_settings': { | 33 'direct_dependent_settings': { |
32 'include_dirs': ['include'] | 34 'include_dirs': ['include'] |
33 }, | 35 }, |
34 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], | 36 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], |
35 'conditions': [ | 37 'conditions': [ |
36 ['have_curl==1', | 38 ['have_curl==1', |
37 { | 39 { |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 }, | 100 }, |
99 { | 101 { |
100 'target_name': 'tests', | 102 'target_name': 'tests', |
101 'type': 'executable', | 103 'type': 'executable', |
102 'dependencies': [ | 104 'dependencies': [ |
103 'third_party/googletest.gyp:googletest_main', | 105 'third_party/googletest.gyp:googletest_main', |
104 'libadblockplus' | 106 'libadblockplus' |
105 ], | 107 ], |
106 'sources': [ | 108 'sources': [ |
107 'test/ConsoleJsObject.cpp', | 109 'test/ConsoleJsObject.cpp', |
| 110 'test/DefaultFileSystem.cpp', |
| 111 'test/FileSystemJsObject.cpp', |
108 'test/FilterEngineStubs.cpp', | 112 'test/FilterEngineStubs.cpp', |
109 'test/GlobalJsObject.cpp', | 113 'test/GlobalJsObject.cpp', |
110 'test/JsEngine.cpp', | 114 'test/JsEngine.cpp', |
| 115 'test/JsValue.cpp', |
111 'test/Thread.cpp', | 116 'test/Thread.cpp', |
112 'test/WebRequest.cpp' | 117 'test/WebRequest.cpp' |
113 ] | 118 ] |
114 }] | 119 }] |
115 } | 120 } |
LEFT | RIGHT |