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.
58 lines
1.3 KiB
58 lines
1.3 KiB
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "VtsHalLibDefaults",
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"liblog",
|
|
"libhidlbase",
|
|
"libutils",
|
|
],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
group_static_libs: true,
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "VtsHalDriverDefaults",
|
|
defaults: ["VtsHalLibDefaults"],
|
|
shared_libs: [
|
|
"libcamera_metadata",
|
|
"libfmq",
|
|
"libprotobuf-cpp-full",
|
|
"libvts_common",
|
|
"libvts_datatype",
|
|
"libvts_drivercomm",
|
|
"libvts_measurement",
|
|
"libvts_multidevice_proto",
|
|
"android.hidl.allocator@1.0",
|
|
],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "VtsHalProfilerDefaults",
|
|
defaults: ["VtsHalLibDefaults"],
|
|
shared_libs: [
|
|
"libfmq",
|
|
"libhidlmemory",
|
|
"libvts_profiling",
|
|
"libvts_multidevice_proto",
|
|
"libprotobuf-cpp-full",
|
|
"android.hidl.memory@1.0",
|
|
],
|
|
// Userdebug only, should not be used to build modules contained in a user build device image.
|
|
multilib: {
|
|
lib32: {
|
|
ldflags: ["-Wl,--rpath,/data/local/tmp/32"]
|
|
},
|
|
lib64: {
|
|
ldflags: ["-Wl,--rpath,/data/local/tmp/64"]
|
|
},
|
|
},
|
|
}
|