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: components/cronet/tools/cr_cronet.py

Issue 2807283002: [Cronet] Build static libcronet.a for iOS with complete dependencies. (Closed)
Patch Set: Use libtool to combine i386 Cronet library and its dependencies. Created 3 years, 7 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
Index: components/cronet/tools/cr_cronet.py
diff --git a/components/cronet/tools/cr_cronet.py b/components/cronet/tools/cr_cronet.py
index a0d111ccef3280e1099fbbdbde32b7013f8533cb..6ee58f16db9e2c57f834d22ff94560c15ec224c6 100755
--- a/components/cronet/tools/cr_cronet.py
+++ b/components/cronet/tools/cr_cronet.py
@@ -87,7 +87,7 @@ def main():
gn_args += ' target_cpu="arm64" '
out_dir_suffix = '-iphoneos'
else:
- gn_args += ' target_cpu="x64" '
+ gn_args += ' target_cpu="x86" '
kapishnikov 2017/05/23 21:37:46 Is "x64" a better default choice?
mef 2017/05/24 21:36:59 Done. Spurious edit from my experiments.
Hiroshi Ichikawa 2017/05/25 02:28:32 Looks like this is still not fixed with Patch Set
mef 2017/05/25 14:53:27 Done. Switching between two computers lost some ch
out_dir_suffix = '-iphonesimulator'
if options.asan:
gn_args += ' is_asan=true use_xcode_clang=true '

Powered by Google App Engine
This is Rietveld 408576698