blob: 3f328fa736682407b6e354c3987494b7023e562b [file] [log] [blame]
Bob Badourc22b35b2021-02-23 14:26:20 -08001package {
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
Steven Morelandd44007e2019-10-24 18:12:46 -070010cc_test {
11 name: "VtsHalVibratorTargetTest",
12 defaults: [
13 "VtsHalTargetTestDefaults",
14 "use_libaidlvintf_gtest_helper_static",
15 ],
16 srcs: ["VtsHalVibratorTargetTest.cpp"],
17 shared_libs: [
18 "libbinder",
19 ],
20 static_libs: [
Jeongik Cha38533912021-01-28 00:49:49 +090021 "android.hardware.vibrator-V2-cpp",
Lais Andrade80b18612020-10-12 18:44:40 +000022 ],
23 test_suites: [
24 "general-tests",
25 "vts",
26 ],
27}
28
29cc_test {
30 name: "VtsHalVibratorManagerTargetTest",
31 defaults: [
32 "VtsHalTargetTestDefaults",
33 "use_libaidlvintf_gtest_helper_static",
34 ],
35 srcs: ["VtsHalVibratorManagerTargetTest.cpp"],
36 shared_libs: [
37 "libbinder",
38 ],
39 static_libs: [
Jeongik Cha38533912021-01-28 00:49:49 +090040 "android.hardware.vibrator-V2-cpp",
Steven Morelandd44007e2019-10-24 18:12:46 -070041 ],
42 test_suites: [
Steven Moreland1c269782020-01-09 11:16:05 -080043 "general-tests",
Dan Shi3a8a6502020-03-26 00:06:39 -070044 "vts",
Steven Morelandd44007e2019-10-24 18:12:46 -070045 ],
46}