forked from google/skia
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathskqp_gn_args.py
44 lines (41 loc) · 1.73 KB
/
skqp_gn_args.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 2019 Google LLC.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
def GetGNArgs(api_level, debug, arch=None, ndk=None, is_android_bp=False):
gn_args = {
'ndk_api': api_level,
'is_debug': 'true' if debug else 'false',
'skia_enable_fontmgr_android': 'false',
'skia_enable_fontmgr_empty': 'true',
'skia_enable_pdf': 'false',
'skia_enable_skottie': 'false',
'skia_enable_skshaper': 'false',
'skia_enable_sksl_tracing': 'true',
'skia_enable_sktext': 'false',
'skia_enable_svg': 'false',
'skia_enable_tools': 'true',
'skia_tools_require_resources': 'true',
'skia_use_dng_sdk': 'false',
'skia_use_expat': 'true',
'skia_use_freetype': 'false',
'skia_use_icu': 'false',
'skia_use_libheif': 'false',
'skia_use_lua': 'false',
'skia_use_piex': 'false',
'skia_use_vulkan': 'true',
'skia_use_wuffs': 'true',
}
def gn_quote(s):
return '"%s"' % s
if is_android_bp is True:
gn_args.update({
'target_os': gn_quote("android"),
'target_cpu': gn_quote("none"),
'is_official_build': 'true',
})
else:
gn_args.update({
'target_cpu': gn_quote(arch),
'ndk': gn_quote(ndk),
})
return gn_args