forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathandroid.gypi
More file actions
65 lines (55 loc) · 1.36 KB
/
android.gypi
File metadata and controls
65 lines (55 loc) · 1.36 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
'variables':
{
'mobile': 1,
'variables':
{
'java_sdk_path%': '<!(echo ${JAVA_SDK})',
'android_sdk_path%': '<!(echo ${ANDROID_SDK})',
'android_ndk_path%': '<!(echo ${ANDROID_NDK})',
'android_platform%': '<!(echo ${ANDROID_PLATFORM})',
'android_build_tools%': '<!(echo ${ANDROID_BUILD_TOOLS})',
},
'javac_path': '<(java_sdk_path)/bin/javac',
'jar_path': '<(java_sdk_path)/bin/jar',
'aidl_path': '<(android_sdk_path)/build-tools/<(android_build_tools)/aidl',
'aidl_framework_path': '<(android_sdk_path)/platforms/<(android_platform)/framework.aidl',
'java_classpath': '<(android_sdk_path)/platforms/<(android_platform)/android.jar',
'output_dir': '../android-<(target_arch)-bin',
# Capture the values of some build tool environment vars
'objcopy': '<!(echo ${OBJCOPY:-objcopy})',
'objdump': '<!(echo ${OBJDUMP:-objdump})',
'strip': '<!(echo ${STRIP:-strip})',
},
'target_defaults':
{
'variables':
{
'app_bundle_suffix': '',
'ext_bundle_suffix': '',
'lib_suffix': '',
'ext_suffix': '',
'exe_suffix': '',
'debug_info_suffix': '.dbg',
'silence_warnings': 0,
},
'target_conditions':
[
[
'_toolset == "host"',
{
'includes':
[
'linux-settings.gypi',
],
},
{
'includes':
[
'android-settings.gypi',
],
},
],
],
},
}