a01c6b0b59
Change-Id: I2d19c4f0ff1439dcd923a3064eb3ba78432a5113 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/281043 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Ben Wagner <bungeman@google.com>
29 lines
768 B
Plaintext
29 lines
768 B
Plaintext
# Copyright 2019 Google LLC.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("../../gn/ios.gni")
|
|
|
|
if (is_ios && skia_use_metal) {
|
|
ios_app_bundle("minimal_ios_mtl_skia_app") {
|
|
sources = [
|
|
"../../tools/skottie_ios_app/GrContextHolder.h",
|
|
"../../tools/skottie_ios_app/GrContextHolder.mm",
|
|
"../../tools/skottie_ios_app/SkMetalViewBridge.h",
|
|
"../../tools/skottie_ios_app/SkMetalViewBridge.mm",
|
|
"main.mm",
|
|
]
|
|
deps = [ "../..:skia" ]
|
|
cflags_objcc = [
|
|
"-std=c++14",
|
|
"-w",
|
|
]
|
|
libs = [
|
|
"Metal.framework",
|
|
"MetalKit.framework",
|
|
"UIKit.framework",
|
|
]
|
|
launchscreen = "../../platform_tools/ios/app/LaunchScreen.storyboard"
|
|
}
|
|
}
|