aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2017-03-13 09:25:33 -0700
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-13 17:21:43 +0000
commit7a5e0f38474a0ab996e038aa42f27c0d152b517e (patch)
tree9d5c6b195cec5a170b6de007f04ba4fd25124ee8
parentc2e9f6d7fbde082c851979254235308c2b6edb65 (diff)
Add iOS simulator support in GN.
This builds fine on my laptop, but fails to link on the bots, so I'm leaving out a new Build bot for now. BUG=skia:6329 Change-Id: I4b33770f13ab9dec914d090b45d9921b19ee2c9d Reviewed-on: https://skia-review.googlesource.com/9519 Commit-Queue: Mike Klein <mtklein@chromium.org> Reviewed-by: Mike Klein <mtklein@chromium.org>
-rw-r--r--gn/BUILD.gn10
-rw-r--r--gn/find_ios_sysroot.py5
2 files changed, 13 insertions, 2 deletions
diff --git a/gn/BUILD.gn b/gn/BUILD.gn
index 5ccc729c3e..7741354097 100644
--- a/gn/BUILD.gn
+++ b/gn/BUILD.gn
@@ -50,7 +50,11 @@ if (!is_clang && !is_win) {
}
if (is_ios) {
- ios_sysroot = exec_script("find_ios_sysroot.py", [], "trim string")
+ sdk = "iphoneos"
+ if (target_cpu == "x86" || target_cpu == "x64") {
+ sdk = "iphonesimulator"
+ }
+ ios_sysroot = exec_script("find_ios_sysroot.py", [ sdk ], "trim string")
}
config("default") {
@@ -190,6 +194,10 @@ config("default") {
_target = target_cpu
if (target_cpu == "arm") {
_target = "armv7"
+ } else if (target_cpu == "x86") {
+ _target = "i386"
+ } else if (target_cpu == "x64") {
+ _target = "x86_64"
}
asmflags += [
"-isysroot",
diff --git a/gn/find_ios_sysroot.py b/gn/find_ios_sysroot.py
index 2d9f8d61d1..789ae9f9a5 100644
--- a/gn/find_ios_sysroot.py
+++ b/gn/find_ios_sysroot.py
@@ -6,5 +6,8 @@
# found in the LICENSE file.
import subprocess
+import sys
-print subprocess.check_output('xcrun --sdk iphoneos --show-sdk-path'.split())
+(sdk,) = sys.argv[1:]
+
+print subprocess.check_output(['xcrun', '--sdk', sdk, '--show-sdk-path'])