1package { 2 // See: http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // all of the 'license_kinds' from "hardware_interfaces_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["hardware_interfaces_license"], 8} 9 10cc_test { 11 name: "VtsHalVibratorTargetTest", 12 defaults: [ 13 "VtsHalTargetTestDefaults", 14 "use_libaidlvintf_gtest_helper_static", 15 ], 16 tidy_timeout_srcs: ["VtsHalVibratorTargetTest.cpp"], 17 srcs: ["VtsHalVibratorTargetTest.cpp"], 18 shared_libs: [ 19 "libbinder", 20 ], 21 static_libs: [ 22 "android.hardware.vibrator-V2-cpp", 23 ], 24 test_suites: [ 25 "general-tests", 26 "vts", 27 ], 28} 29 30cc_test { 31 name: "VtsHalVibratorManagerTargetTest", 32 defaults: [ 33 "VtsHalTargetTestDefaults", 34 "use_libaidlvintf_gtest_helper_static", 35 ], 36 srcs: ["VtsHalVibratorManagerTargetTest.cpp"], 37 shared_libs: [ 38 "libbinder", 39 ], 40 static_libs: [ 41 "android.hardware.vibrator-V2-cpp", 42 ], 43 test_suites: [ 44 "general-tests", 45 "vts", 46 ], 47} 48