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.
43 lines
1006 B
43 lines
1006 B
package {
|
|
// http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// the below license kinds from "system_libvintf_license":
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["system_libvintf_license"],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "use_libaidlvintf_gtest_helper_static",
|
|
static_libs: [
|
|
"libaidlvintf_gtest_helper",
|
|
"libbase",
|
|
"libz",
|
|
"libselinux",
|
|
"libtinyxml2",
|
|
"libvintf",
|
|
"libutils",
|
|
],
|
|
}
|
|
|
|
cc_test_library {
|
|
name: "test_compile_use_libaidlvintf_gtest_helper_static",
|
|
defaults: ["use_libaidlvintf_gtest_helper_static"],
|
|
visibility: [":__subpackages__"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libaidlvintf_gtest_helper",
|
|
export_include_dirs: ["include"],
|
|
srcs: [
|
|
"Vintf.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"libz",
|
|
"libselinux",
|
|
"libtinyxml2",
|
|
"libvintf",
|
|
"libutils",
|
|
],
|
|
}
|