1package { 2 // http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // the below license kinds from "system_libvintf_license": 5 // SPDX-license-identifier-Apache-2.0 6 default_applicable_licenses: ["system_libvintf_license"], 7} 8 9cc_defaults { 10 name: "use_libaidlvintf_gtest_helper_static", 11 static_libs: [ 12 "libaidlvintf_gtest_helper", 13 "libbase", 14 "libz", 15 "libselinux", 16 "libtinyxml2", 17 "libvintf", 18 "libutils", 19 ], 20} 21 22cc_test_library { 23 name: "test_compile_use_libaidlvintf_gtest_helper_static", 24 defaults: ["use_libaidlvintf_gtest_helper_static"], 25 visibility: [":__subpackages__"], 26} 27 28cc_library_static { 29 name: "libaidlvintf_gtest_helper", 30 export_include_dirs: ["include"], 31 srcs: [ 32 "Vintf.cpp", 33 ], 34 shared_libs: [ 35 "libbase", 36 "libz", 37 "libselinux", 38 "libtinyxml2", 39 "libvintf", 40 "libutils", 41 ], 42} 43