blob: aedb7522ab08532f8810bcbe0ac67d56573bf307 [file] [log] [blame]
Fedor Kudasova8871162019-07-04 12:54:28 +01001cc_library_host_static {
2 name: "libhostgraphics",
3
4 srcs: [
5 ":libui_host_common",
6 ],
7
8 include_dirs: [
9 // Here we override all the headers automatically included with frameworks/native/include.
10 // When frameworks/native/include will be removed from the list of automatic includes.
11 // We will have to copy necessary headers with a pre-build step (generated headers).
12 ".",
13 "frameworks/native/libs/nativebase/include",
14 "frameworks/native/libs/nativewindow/include",
15 "frameworks/native/libs/arect/include",
16 ],
17 export_include_dirs: ["."],
18
19 target: {
20 windows: {
21 enabled: true,
22 }
23 },
24}