Fedor Kudasov 15e58b4023 Add hostgraphics classes required for ImageReader
Bug: 117921091
Test: all tests should pass
Change-Id: I5d60a1177d43eb8dec08403cf34936007b8a267f
(cherry picked from commit c1409f44f82313902a690fb257ee271dc16385a0)
2019-08-02 10:00:02 +00:00

31 lines
834 B
Plaintext

cc_library_host_static {
name: "libhostgraphics",
cflags: [
"-Wno-unused-parameter",
],
srcs: [
":libui_host_common",
"Fence.cpp",
"HostBufferQueue.cpp",
"PublicFormat.cpp",
],
include_dirs: [
// Here we override all the headers automatically included with frameworks/native/include.
// When frameworks/native/include will be removed from the list of automatic includes.
// We will have to copy necessary headers with a pre-build step (generated headers).
".",
"frameworks/native/libs/nativebase/include",
"frameworks/native/libs/nativewindow/include",
"frameworks/native/libs/arect/include",
],
export_include_dirs: ["."],
target: {
windows: {
enabled: true,
}
},
}