OLD | NEW |
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 'direct_dependent_settings': { | 42 'direct_dependent_settings': { |
43 'include_dirs': ['include'] | 43 'include_dirs': ['include'] |
44 }, | 44 }, |
45 'conditions': [ | 45 'conditions': [ |
46 ['OS=="android"', { | 46 ['OS=="android"', { |
47 'link_settings': { | 47 'link_settings': { |
48 'libraries': [ | 48 'libraries': [ |
49 'android_arm.release/obj.target/tools/gyp/libv8_base.a', | 49 'android_arm.release/obj.target/tools/gyp/libv8_base.a', |
50 'android_arm.release/obj.target/tools/gyp/libv8_snapshot.a', | 50 'android_arm.release/obj.target/tools/gyp/libv8_snapshot.a', |
51 ], | 51 ], |
52 } | 52 }, |
| 53 'standalone_static_library': 1, # disable thin archives |
53 }, { | 54 }, { |
54 'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'], | 55 'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'], |
55 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], | 56 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], |
56 }], | 57 }], |
57 ['have_curl==1', | 58 ['have_curl==1', |
58 { | 59 { |
59 'sources': [ | 60 'sources': [ |
60 'src/DefaultWebRequestCurl.cpp', | 61 'src/DefaultWebRequestCurl.cpp', |
61 ], | 62 ], |
62 'link_settings': { | 63 'link_settings': { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 'lib/updater.js', | 98 'lib/updater.js', |
98 'adblockplus/lib/filterNotifier.js', | 99 'adblockplus/lib/filterNotifier.js', |
99 'lib/init.js', | 100 'lib/init.js', |
100 'adblockplus/lib/filterClasses.js', | 101 'adblockplus/lib/filterClasses.js', |
101 'adblockplus/lib/subscriptionClasses.js', | 102 'adblockplus/lib/subscriptionClasses.js', |
102 'adblockplus/lib/filterStorage.js', | 103 'adblockplus/lib/filterStorage.js', |
103 'adblockplus/lib/elemHide.js', | 104 'adblockplus/lib/elemHide.js', |
104 'adblockplus/lib/matcher.js', | 105 'adblockplus/lib/matcher.js', |
105 'adblockplus/lib/filterListener.js', | 106 'adblockplus/lib/filterListener.js', |
106 'adblockplus/lib/synchronizer.js', | 107 'adblockplus/lib/synchronizer.js', |
| 108 'lib/filterUpdateRegistration.js', |
107 'adblockplus/chrome/content/ui/subscriptions.xml', | 109 'adblockplus/chrome/content/ui/subscriptions.xml', |
108 ], | 110 ], |
109 'load_before_files': [ | 111 'load_before_files': [ |
110 'lib/compat.js' | 112 'lib/compat.js' |
111 ], | 113 ], |
112 'load_after_files': [ | 114 'load_after_files': [ |
113 'lib/api.js', | 115 'lib/api.js', |
114 'lib/publicSuffixList.js', | 116 'lib/publicSuffixList.js', |
115 'lib/punycode.js', | 117 'lib/punycode.js', |
116 'lib/basedomain.js', | 118 'lib/basedomain.js', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 'test/WebRequest.cpp' | 159 'test/WebRequest.cpp' |
158 ], | 160 ], |
159 'msvs_settings': { | 161 'msvs_settings': { |
160 'VCLinkerTool': { | 162 'VCLinkerTool': { |
161 'SubSystem': '1', # Console | 163 'SubSystem': '1', # Console |
162 'EntryPointSymbol': 'mainCRTStartup', | 164 'EntryPointSymbol': 'mainCRTStartup', |
163 }, | 165 }, |
164 }, | 166 }, |
165 }] | 167 }] |
166 } | 168 } |
OLD | NEW |