You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
949 B
40 lines
949 B
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "hardware_qcom_sm7250_display_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-BSD
|
|
default_applicable_licenses: ["hardware_qcom_sm7250_display_license"],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libqdutils",
|
|
vendor: true,
|
|
defaults: [
|
|
"display_defaults",
|
|
"display_go_defaults",
|
|
],
|
|
header_libs: [
|
|
"libhardware_headers",
|
|
"libutils_headers",
|
|
],
|
|
shared_libs: [
|
|
"libbinder",
|
|
"libqservice",
|
|
],
|
|
cflags: [
|
|
"-DLOG_TAG=\"qdutils\"",
|
|
"-Wno-sign-conversion",
|
|
],
|
|
srcs: [
|
|
"qd_utils.cpp",
|
|
"display_config.cpp",
|
|
],
|
|
sanitize: {
|
|
misc_undefined: [
|
|
"signed-integer-overflow",
|
|
"unsigned-integer-overflow",
|
|
],
|
|
}
|
|
}
|