-
Notifications
You must be signed in to change notification settings - Fork 7
/
Android.bp
28 lines (27 loc) · 873 Bytes
/
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
soong_config_module_type {
name: "qtidisplaycommonsys_cc_defaults",
module_type: "cc_defaults",
config_namespace: "qtidisplaycommonsys",
bool_variables: [
"gralloc_handle_has_no_reserved_size",
"gralloc_handle_has_no_custom_content_md_reserved_size",
"gralloc_handle_has_no_ubwcp",
],
properties: [
"cflags",
],
}
qtidisplaycommonsys_cc_defaults {
name: "qtidisplaycommonsys_defaults",
soong_config_variables: {
gralloc_handle_has_no_reserved_size: {
cflags: ["-DGRALLOC_HANDLE_HAS_NO_RESERVED_SIZE"],
},
gralloc_handle_has_no_custom_content_md_reserved_size: {
cflags: ["-DGRALLOC_HANDLE_HAS_NO_CUSTOM_CONTENT_MD_RESERVED_SIZE"],
},
gralloc_handle_has_no_ubwcp: {
cflags: ["-DGRALLOC_HANDLE_HAS_NO_UBWCP"],
},
},
}