Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: libadblockplus.gyp

Issue 10198022: Pass application data into libadblockplus (Closed)
Patch Set: Merged upstream, addressed issues, renamed AppInfo fields Created April 17, 2013, 2:47 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
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/ConsoleJsObject.cpp', 21 'src/ConsoleJsObject.cpp',
21 'src/DefaultFileSystem.cpp', 22 'src/DefaultFileSystem.cpp',
22 'src/ErrorCallback.cpp', 23 'src/ErrorCallback.cpp',
23 'src/FileSystemJsObject.cpp', 24 'src/FileSystemJsObject.cpp',
24 'src/FilterEngine.cpp', 25 'src/FilterEngine.cpp',
25 'src/GlobalJsObject.cpp', 26 'src/GlobalJsObject.cpp',
26 'src/JsEngine.cpp', 27 'src/JsEngine.cpp',
27 'src/JsValue.cpp', 28 'src/JsValue.cpp',
28 'src/Thread.cpp', 29 'src/Thread.cpp',
29 'src/Utils.cpp', 30 'src/Utils.cpp',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 }] 100 }]
100 }, 101 },
101 { 102 {
102 'target_name': 'tests', 103 'target_name': 'tests',
103 'type': 'executable', 104 'type': 'executable',
104 'dependencies': [ 105 'dependencies': [
105 'third_party/googletest.gyp:googletest_main', 106 'third_party/googletest.gyp:googletest_main',
106 'libadblockplus' 107 'libadblockplus'
107 ], 108 ],
108 'sources': [ 109 'sources': [
110 'test/AppInfoJsObject.cpp',
109 'test/ConsoleJsObject.cpp', 111 'test/ConsoleJsObject.cpp',
110 'test/DefaultFileSystem.cpp', 112 'test/DefaultFileSystem.cpp',
111 'test/FileSystemJsObject.cpp', 113 'test/FileSystemJsObject.cpp',
112 'test/FilterEngineStubs.cpp', 114 'test/FilterEngineStubs.cpp',
113 'test/GlobalJsObject.cpp', 115 'test/GlobalJsObject.cpp',
114 'test/JsEngine.cpp', 116 'test/JsEngine.cpp',
115 'test/JsValue.cpp', 117 'test/JsValue.cpp',
116 'test/Thread.cpp', 118 'test/Thread.cpp',
117 'test/WebRequest.cpp' 119 'test/WebRequest.cpp'
118 ] 120 ]
119 }] 121 }]
120 } 122 }
OLDNEW
« no previous file with comments | « lib/info.js ('k') | shell/src/Main.cpp » ('j') | src/AppInfoJsObject.cpp » ('J')

Powered by Google App Engine
This is Rietveld