-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathAndroid.bp
53 lines (47 loc) · 1.11 KB
/
Android.bp
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
soong_namespace {
imports:[
"hardware/samsung_slsi-linaro/graphics",
"hardware/samsung_slsi-linaro/interfaces",
"hardware/samsung_slsi-linaro/openmax"
],
}
soong_config_module_type {
name: "libexynos_headers_c2_cc_defaults",
module_type: "cc_defaults",
config_namespace: "exynos_headers_c2",
variables: [
"full_st2094_40",
],
properties: [
"cflags",
],
}
soong_config_bool_variable {
name: "full_st2094_40",
}
libexynos_headers_c2_cc_defaults {
name: "libexynos_headers_c2_defaults",
soong_config_variables: {
full_st2094_40: {
cflags: ["-DUSE_FULL_ST2094_40"],
}
}
}
cc_library_headers {
name: "libexynos_headers",
header_libs: [
"libaudio_system_headers",
"libhardware_headers",
"libsystem_headers",
"libcutils_headers",
],
export_header_lib_headers: [
"libaudio_system_headers",
"libsystem_headers",
"libcutils_headers",
"libhardware_headers",
],
export_include_dirs: ["include"],
proprietary: true,
}
subdirs = ["*"]