Files
frameworks_base/libs/hostgraphics/Android.bp
Marin Shalamanov a602c176db Add dependancy to libbase for libhostgraphics
The dependancy is required for the to_string function
which is now defined in Rect.cpp.

Bug: 161793589
Bug: 160404780
Test: m libhostgraphics
Change-Id: Id071c207b5344e36c992f3a095c42a5f135c86d4
2020-08-12 22:21:40 +02:00

36 lines
881 B
Plaintext

cc_library_host_static {
name: "libhostgraphics",
cflags: [
"-Wno-unused-parameter",
],
static_libs: [
"libbase",
],
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,
}
},
}