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