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

Side by Side Diff: libadblockplus.gyp

Issue 6193234183192576: Issue 1197 - change local copy of v8 (to 4.3.15) to work with Visual Studio 2013 (Closed)
Patch Set: rebase and update Created May 17, 2016, 3:18 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
« no previous file with comments | « include/AdblockPlus/JsValue.h ('k') | src/ConsoleJsObject.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'conditions': [[ 2 'conditions': [[
3 # We don't want to use curl on Windows and Android, skip the check there 3 # We don't want to use curl on Windows and Android, skip the check there
4 'OS=="win" or OS=="android"', 4 'OS=="win" or OS=="android"',
5 { 5 {
6 'variables': { 6 'variables': {
7 'have_curl': 0 7 'have_curl': 0
8 } 8 }
9 }, 9 },
10 { 10 {
(...skipping 15 matching lines...) Expand all
26 'action': ['python', 'ensure_dependencies.py'], 26 'action': ['python', 'ensure_dependencies.py'],
27 }], 27 }],
28 }, 28 },
29 { 29 {
30 'target_name': 'libadblockplus', 30 'target_name': 'libadblockplus',
31 'type': '<(library)', 31 'type': '<(library)',
32 'dependencies': ['ensure_dependencies'], 32 'dependencies': ['ensure_dependencies'],
33 'include_dirs': [ 33 'include_dirs': [
34 'include', 34 'include',
35 'third_party/v8/include', 35 'third_party/v8/include',
36 'third_party/v8',
36 ], 37 ],
37 'sources': [ 38 'sources': [
38 'src/AppInfoJsObject.cpp', 39 'src/AppInfoJsObject.cpp',
39 'src/ConsoleJsObject.cpp', 40 'src/ConsoleJsObject.cpp',
40 'src/DefaultLogSystem.cpp', 41 'src/DefaultLogSystem.cpp',
41 'src/DefaultFileSystem.cpp', 42 'src/DefaultFileSystem.cpp',
42 'src/FileSystemJsObject.cpp', 43 'src/FileSystemJsObject.cpp',
43 'src/FilterEngine.cpp', 44 'src/FilterEngine.cpp',
44 'src/GlobalJsObject.cpp', 45 'src/GlobalJsObject.cpp',
45 'src/JsContext.cpp', 46 'src/JsContext.cpp',
(...skipping 13 matching lines...) Expand all
59 'conditions': [ 60 'conditions': [
60 ['OS=="android"', { 61 ['OS=="android"', {
61 'link_settings': { 62 'link_settings': {
62 'libraries': [ 63 'libraries': [
63 'android_<(ANDROID_ARCH).release/obj.target/tools/gyp/libv8_base.<(A NDROID_ARCH).a', 64 'android_<(ANDROID_ARCH).release/obj.target/tools/gyp/libv8_base.<(A NDROID_ARCH).a',
64 'android_<(ANDROID_ARCH).release/obj.target/tools/gyp/libv8_snapshot .a', 65 'android_<(ANDROID_ARCH).release/obj.target/tools/gyp/libv8_snapshot .a',
65 ], 66 ],
66 }, 67 },
67 'standalone_static_library': 1, # disable thin archives 68 'standalone_static_library': 1, # disable thin archives
68 }, { 69 }, {
69 'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'], 70 'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8', 'third_party/v8/t ools/gyp/v8.gyp:v8_libplatform',],
70 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], 71 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8', 'thi rd_party/v8/tools/gyp/v8.gyp:v8_libplatform'],
71 }], 72 }],
72 ['have_curl==1', 73 ['have_curl==1',
73 { 74 {
74 'sources': [ 75 'sources': [
75 'src/DefaultWebRequestCurl.cpp', 76 'src/DefaultWebRequestCurl.cpp',
76 ], 77 ],
77 'link_settings': { 78 'link_settings': {
78 'libraries': ['-lcurl'] 79 'libraries': ['-lcurl']
79 }, 80 },
80 'all_dependent_settings': { 81 'all_dependent_settings': {
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'test/WebRequest.cpp' 183 'test/WebRequest.cpp'
183 ], 184 ],
184 'msvs_settings': { 185 'msvs_settings': {
185 'VCLinkerTool': { 186 'VCLinkerTool': {
186 'SubSystem': '1', # Console 187 'SubSystem': '1', # Console
187 'EntryPointSymbol': 'mainCRTStartup', 188 'EntryPointSymbol': 'mainCRTStartup',
188 }, 189 },
189 }, 190 },
190 }] 191 }]
191 } 192 }
OLDNEW
« no previous file with comments | « include/AdblockPlus/JsValue.h ('k') | src/ConsoleJsObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld