46eaab3959
Ran the following commands: find -name "BUILD.bazel" -exec sed -i -e '1iload("//bazel:macros.bzl", "cc_library", "exports_files_legacy")\nexports_files_legacy()' {} + buildifier --lint=fix --mode=fix -r . This had the effect of making sure we can export all of our files in G3 (until we no longer have legacy targets) and making all of our cc_libraries shim-able. bazel/macros.bzl has the human-contributed changes, the rest were mechanical. Change-Id: I8e24e30e74b038cfd072cdbe4078bfd1d213dd46 Bug: skia:13211 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/535359 Reviewed-by: Ben Wagner <bungeman@google.com> |
||
---|---|---|
.. | ||
BUILD.bazel | ||
BUILD.gn | ||
GrContextHolder.h | ||
GrContextHolder.mm | ||
Info.plist | ||
main.mm | ||
README.md | ||
SkiaContext.h | ||
SkiaContext.mm | ||
SkiaGLContext.mm | ||
SkiaMetalContext.mm | ||
SkiaUIContext.mm | ||
SkiaViewController.h | ||
SkiaViewController.mm | ||
SkMetalViewBridge.h | ||
SkMetalViewBridge.mm | ||
SkottieViewController.h | ||
SkottieViewController.mm |
Skottie iOS Example App
Metal
How to compile for the Metal backend:
cd $SKIA_ROOT_DIRECTORY
mkdir -p out/ios_arm64_mtl
cat > out/ios_arm64_mtl/args.gn <<EOM
target_os="ios"
target_cpu="arm64"
skia_use_metal=true
skia_use_expat=false
skia_enable_pdf=false
EOM
tools/git-sync-deps
bin/gn gen out/ios_arm64_mtl
ninja -C out/ios_arm64_mtl skottie_example
Then install the out/ios_arm64_mtl/skottie_example.app
bundle.
CPU
How to compile for the CPU backend:
cd $SKIA_ROOT_DIRECTORY
mkdir -p out/ios_arm64_cpu
cat > out/ios_arm64_cpu/args.gn <<EOM
target_cpu="arm64"
target_os="ios"
skia_enable_gpu=false
skia_enable_pdf=false
skia_use_expat=false
EOM
tools/git-sync-deps
bin/gn gen out/ios_arm64_cpu
ninja -C out/ios_arm64_cpu skottie_example
Then install the out/ios_arm64_cpu/skottie_example.app
bundle.
OpenGL
How to compile for the OpenGL backend:
cd $SKIA_ROOT_DIRECTORY
mkdir -p out/ios_arm64_gl
cat > out/ios_arm64_gl/args.gn <<EOM
target_cpu="arm64"
target_os="ios"
skia_enable_gpu=true
skia_use_metal=false
skia_enable_pdf=false
skia_use_expat=false
EOM
tools/git-sync-deps
bin/gn gen out/ios_arm64_gl
ninja -C out/ios_arm64_gl skottie_example
Then install the out/ios_arm64_gl/skottie_example.app
bundle.