aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/user
diff options
context:
space:
mode:
authorGravatar Jim Van Verth <jvanverth@google.com>2017-11-28 09:45:26 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-11-28 15:29:07 +0000
commit443a913b8f0e3fc4a5f6abfa6be2fd6e79641ffe (patch)
tree9463b8ae0b35268ae0c8229ec561cbde5eeb8c06 /site/user
parent9f553932a4a4e986db323d8f4da2f78d9a729254 (diff)
Add create_bundle support for GN
Docs-Preview: https://skia.org/?cl=75383 Bug: skia:7339 Change-Id: I985734e8b7b5af21a82cb8ee59acbfb5ff1d3ff7 Reviewed-on: https://skia-review.googlesource.com/75383 Commit-Queue: Jim Van Verth <jvanverth@google.com> Reviewed-by: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'site/user')
-rw-r--r--site/user/build.md12
1 files changed, 5 insertions, 7 deletions
diff --git a/site/user/build.md b/site/user/build.md
index 2715c2867a..a9114c53b7 100644
--- a/site/user/build.md
+++ b/site/user/build.md
@@ -207,17 +207,15 @@ This defaults to `target_cpu="arm64"`. Choosing `x64` targets the iOS simulator
bin/gn gen out/ios32 --args='target_os="ios" target_cpu="arm"'
bin/gn gen out/iossim --args='target_os="ios" target_cpu="x64"'
-Googlers who want to sign and run iOS test binaries can do so by running something like
+This will also package (and for devices, sign) iOS test binaries. For the moment a
+Google provisioning profile is needed to sign.
- python gn/package_ios.py out/Debug/dm
- python gn/package_ios.py out/Release/nanobench
-
-These commands will create and sign `dm.app` or `nanobench.app` packages you
-can push to iOS devices registered for Google development. `ios-deploy` makes
-installing and running these packages easy:
+For signed packages `ios-deploy` makes installing and running them on a device easy:
ios-deploy -b out/Debug/dm.app -d --args "--match foo"
+Alternatively you can generate an Xcode project by passing `--ide=xcode` to `bin/gn gen`.
+
If you find yourself missing a Google signing identity or provisioning profile,
you'll want to have a read through go/appledev.