-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroid.bp
44 lines (41 loc) · 1.14 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
soong_namespace {
}
soong_config_module_type {
name: "qtidisplay_intf_cc_defaults",
module_type: "cc_defaults",
config_namespace: "qtidisplay",
bool_variables: [
"gralloc_handle_has_reserved_size",
"gralloc_handle_has_custom_content_md_reserved_size",
],
properties: [
"export_cflags",
],
}
qtidisplay_intf_cc_defaults {
name: "qtidisplay_intf_defaults",
soong_config_variables: {
gralloc_handle_has_reserved_size: {
export_cflags: ["-DGRALLOC_HANDLE_HAS_RESERVED_SIZE"],
},
gralloc_handle_has_custom_content_md_reserved_size: {
export_cflags: ["-DGRALLOC_HANDLE_HAS_CUSTOM_CONTENT_MD_RESERVED_SIZE"],
},
},
}
cc_library_headers {
name: "display_intf_headers",
vendor_available: true,
defaults: [
"gralloc_handle_has_custom_content_md_reserved_size_defaults",
"gralloc_handle_has_reserved_size_defaults",
"gralloc_handle_has_ubwcp_format_defaults",
"qtidisplay_intf_defaults",
],
export_include_dirs: [
"gralloc",
"include",
"libqdmetadata",
"services",
],
}