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

Unified Diff: libadblockplus.gyp

Issue 10228016: Android build target for libadblockplus (Closed)
Patch Set: Created April 30, 2013, 7:40 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« common.gypi ('K') | « common.gypi ('k') | patches/V8.patch » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libadblockplus.gyp
===================================================================
--- a/libadblockplus.gyp
+++ b/libadblockplus.gyp
@@ -22,7 +22,12 @@
'include',
'third_party/v8/include'
],
- 'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'],
+ 'dependencies': [],
Wladimir Palant 2013/05/07 08:18:54 You can simply remove that entry, having an empty
+ 'conditions': [
+ ['OS!="android"', {
+ 'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'],
Eric 2013/06/12 14:48:17 I am curious as to why this dependency is needed f
Wladimir Palant 2013/06/12 19:33:23 It's actually the other way round. For Android we
+ }]
+ ],
'sources': [
'src/AppInfoJsObject.cpp',
'src/ConsoleJsObject.cpp',
@@ -42,7 +47,12 @@
'direct_dependent_settings': {
'include_dirs': ['include']
},
- 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'],
+ 'export_dependent_settings': [],
Wladimir Palant 2013/05/07 08:18:54 You can simply remove that entry, having an empty
+ 'conditions': [
+ ['OS!="android"', {
+ 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'],
+ }]
+ ],
'conditions': [
['have_curl==1',
{
« common.gypi ('K') | « common.gypi ('k') | patches/V8.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld