Bug: 117921091 Test: all tests should pass Change-Id: I5d60a1177d43eb8dec08403cf34936007b8a267f (cherry picked from commit c1409f44f82313902a690fb257ee271dc16385a0)
31 lines
834 B
Plaintext
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,
|
|
}
|
|
},
|
|
} |