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.
48 lines
1.2 KiB
48 lines
1.2 KiB
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "frameworks_native_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["frameworks_native_license"],
|
|
}
|
|
|
|
shared_libs = [
|
|
"android.hardware.configstore-utils",
|
|
"android.hardware.configstore@1.0",
|
|
"libbinder",
|
|
"libbufferhubqueue",
|
|
"libcutils",
|
|
"libgui",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libui",
|
|
"libutils",
|
|
"libnativewindow",
|
|
"libpdx_default_transport",
|
|
"libSurfaceFlingerProp",
|
|
]
|
|
|
|
static_libs = [
|
|
"libdisplay",
|
|
]
|
|
|
|
cc_test {
|
|
srcs: ["vrflinger_test.cpp"],
|
|
// See go/apct-presubmit for documentation on how this .filter file is used
|
|
// by Android's automated testing infrastructure for test filtering.
|
|
data: ["vrflinger_test.filter"],
|
|
static_libs: static_libs,
|
|
shared_libs: shared_libs,
|
|
cflags: [
|
|
"-DLOG_TAG=\"VrFlingerTest\"",
|
|
"-DTRACE=0",
|
|
"-O0",
|
|
"-g",
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
header_libs: ["libsurfaceflinger_headers"],
|
|
name: "vrflinger_test",
|
|
}
|