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

Side by Side Diff: libadblockplus.gyp

Issue 10213003: Make JsEngine::Evaluate() return a wrapper for v8::Value to accessdifferent variable types easily (Closed)
Patch Set: Created April 12, 2013, 2:55 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/ConsoleJsObject.cpp', 20 'src/ConsoleJsObject.cpp',
21 'src/ErrorCallback.cpp', 21 'src/ErrorCallback.cpp',
22 'src/FileReader.cpp', 22 'src/FileReader.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/JsValue.cpp',
26 'src/Thread.cpp', 27 'src/Thread.cpp',
27 'src/WebRequestJsObject.cpp', 28 'src/WebRequestJsObject.cpp',
28 '<(INTERMEDIATE_DIR)/adblockplus.js.cc' 29 '<(INTERMEDIATE_DIR)/adblockplus.js.cc'
29 ], 30 ],
30 'direct_dependent_settings': { 31 'direct_dependent_settings': {
31 'include_dirs': ['include'] 32 'include_dirs': ['include']
32 }, 33 },
33 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], 34 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'],
34 'conditions': [ 35 'conditions': [
35 ['have_curl==1', 36 ['have_curl==1',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 'sources': [ 102 'sources': [
102 'test/ConsoleJsObject.cpp', 103 'test/ConsoleJsObject.cpp',
103 'test/FilterEngineStubs.cpp', 104 'test/FilterEngineStubs.cpp',
104 'test/GlobalJsObject.cpp', 105 'test/GlobalJsObject.cpp',
105 'test/JsEngine.cpp', 106 'test/JsEngine.cpp',
106 'test/Thread.cpp', 107 'test/Thread.cpp',
107 'test/WebRequest.cpp' 108 'test/WebRequest.cpp'
108 ] 109 ]
109 }] 110 }]
110 } 111 }
OLDNEW

Powered by Google App Engine
This is Rietveld