blob: dfbfc6bcb03764471650d7639b1894be989060e7 [file] [log] [blame]
soong_namespace {
imports: [
"hardware/qcom/display",
"hardware/qcom/display/gralloc",
],
}
cc_library_shared {
name: "libgpu_tonemapper",
sanitize: {
integer_overflow: true,
},
vendor: true,
header_libs: ["display_headers"],
shared_libs: [
"libEGL",
"libGLESv2",
"libGLESv3",
"libgrallocutils",
"libqdMetaData",
"libui",
"libutils",
"liblog",
],
cflags: [
"-Wno-missing-field-initializers",
"-Wall",
"-Wno-unused-parameter",
"-DLOG_TAG=\"GPU_TONEMAPPER\"",
"-DTARGET_ION_ABI_VERSION=2",
],
srcs: [
"TonemapFactory.cpp",
"glengine.cpp",
"EGLImageBuffer.cpp",
"EGLImageWrapper.cpp",
"Tonemapper.cpp",
],
}