blob: e713b98b867ebadb1a675c3901f8d3c0ce2c6dd9 [file] [log] [blame]
Fedor Kudasova8871162019-07-04 12:54:28 +01001cc_library_host_static {
2 name: "libhostgraphics",
3
Fedor Kudasov15e58b42019-07-04 17:52:39 +01004 cflags: [
5 "-Wno-unused-parameter",
6 ],
7
Fedor Kudasova8871162019-07-04 12:54:28 +01008 srcs: [
9 ":libui_host_common",
Fedor Kudasov15e58b42019-07-04 17:52:39 +010010 "Fence.cpp",
11 "HostBufferQueue.cpp",
12 "PublicFormat.cpp",
Fedor Kudasova8871162019-07-04 12:54:28 +010013 ],
14
15 include_dirs: [
16 // Here we override all the headers automatically included with frameworks/native/include.
17 // When frameworks/native/include will be removed from the list of automatic includes.
18 // We will have to copy necessary headers with a pre-build step (generated headers).
19 ".",
20 "frameworks/native/libs/nativebase/include",
21 "frameworks/native/libs/nativewindow/include",
22 "frameworks/native/libs/arect/include",
23 ],
24 export_include_dirs: ["."],
25
26 target: {
27 windows: {
28 enabled: true,
29 }
30 },
31}