82e3afa99d
gn_to_bp: wrap defines in ifndef create_apk.py assumes you are either run from the aosp tree, or you are being run from make_universal_apk.py, which now defers to create_apk.py for all functionality, even argument parsing. tools/skqp/generate_gn_args moved some functionity into skqp_gn_args.py, which is now used by create_apk.py create_apk now accepts android sdk license for you. create_apk and make_universal_apk.py now are better about cleaning up after exceptions happen. Old script make_apk.sh now just points at make_universal_apk.py CQ_INCLUDE_TRYBOTS=skia.primary:Build-Debian9-Clang-x86-devrel-Android_SKQP,Test-Debian9-Clang-NUC7i5BNK-CPU-Emulator-x86-devrel-All-Android_SKQP Change-Id: I2dba20ef7017987cabb2bd49f070e2b1594785d5 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/235678 Reviewed-by: Ben Wagner <bungeman@google.com> Commit-Queue: Hal Canary <halcanary@google.com>
33 lines
1.2 KiB
Python
33 lines
1.2 KiB
Python
# Copyright 2019 Google LLC.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
SkqpGnArgs = {
|
|
'extra_cflags': '[ "-DSK_ENABLE_DUMP_GPU", "-DSK_BUILD_FOR_SKQP" ]',
|
|
'skia_enable_fontmgr_android': 'false',
|
|
'skia_enable_fontmgr_empty': 'true',
|
|
'skia_enable_pdf': 'false',
|
|
'skia_enable_skottie': 'false',
|
|
'skia_skqp_global_error_tolerance': '8',
|
|
'skia_tools_require_resources': 'true',
|
|
'skia_use_dng_sdk': 'false',
|
|
'skia_use_expat': 'true',
|
|
'skia_use_icu': 'false',
|
|
'skia_use_libheif': 'false',
|
|
'skia_use_lua': 'false',
|
|
'skia_use_piex': 'false',
|
|
'skia_use_vulkan': 'true',
|
|
}
|
|
|
|
def GetGNArgs(arch, android_ndk, debug, api_level):
|
|
def gn_quote(s):
|
|
return '"%s"' % s
|
|
gn_args = {
|
|
'target_cpu': gn_quote(arch),
|
|
'ndk': gn_quote(android_ndk),
|
|
'is_debug': 'true' if debug else 'false',
|
|
'ndk_api': api_level,
|
|
}
|
|
gn_args.update(SkqpGnArgs)
|
|
return gn_args
|