Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Unified Diff: tools/gyp/v8.gyp

Issue 1413693009: [mac] Fix cross-compilation for Android from a Mac Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« build/standalone.gypi ('K') | « docs/d8_on_android.md ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gyp/v8.gyp
diff --git a/tools/gyp/v8.gyp b/tools/gyp/v8.gyp
index 3937737fd6927bfaf258e28b290786093140608c..e0016843d2b12fd118a711e4b17da9688cde5f5e 100644
--- a/tools/gyp/v8.gyp
+++ b/tools/gyp/v8.gyp
@@ -146,6 +146,7 @@
{
'target_name': 'v8_snapshot',
'type': 'static_library',
+ 'standalone_static_library': 1,
Jakob Kummerow 2015/10/27 16:53:35 I don't think we want non-thin libraries, it's a w
'conditions': [
['want_separate_host_toolset==1', {
'toolsets': ['host', 'target'],
@@ -223,6 +224,7 @@
{
'target_name': 'v8_nosnapshot',
'type': 'static_library',
+ 'standalone_static_library': 1,
'dependencies': [
'v8_base',
],
@@ -256,6 +258,7 @@
{
'target_name': 'v8_external_snapshot',
'type': 'static_library',
+ 'standalone_static_library': 1,
'conditions': [
[ 'v8_use_external_startup_data==1', {
'conditions': [
@@ -361,6 +364,7 @@
{
'target_name': 'v8_base',
'type': 'static_library',
+ 'standalone_static_library': 1,
'dependencies': [
'v8_libbase',
],
@@ -1448,6 +1452,7 @@
{
'target_name': 'v8_libbase',
'type': 'static_library',
+ 'standalone_static_library': 1,
'variables': {
'optimize': 'max',
},
@@ -1712,6 +1717,7 @@
{
'target_name': 'v8_libplatform',
'type': 'static_library',
+ 'standalone_static_library': 1,
'variables': {
'optimize': 'max',
},
« build/standalone.gypi ('K') | « docs/d8_on_android.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698