blob: 12618707ca3fa95f9dc254c91846dfce3b07770a [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 ],
Chih-Hung Hsiehad1bf312022-02-17 21:56:13 -080016 tidy_timeout_srcs: ["VtsHalVibratorTargetTest.cpp"],
Steven Morelandd44007e2019-10-24 18:12:46 -070017 srcs: ["VtsHalVibratorTargetTest.cpp"],
18 shared_libs: [
19 "libbinder",
20 ],
21 static_libs: [
Jeongik Cha38533912021-01-28 00:49:49 +090022 "android.hardware.vibrator-V2-cpp",
Lais Andrade80b18612020-10-12 18:44:40 +000023 ],
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: [
Jeongik Cha38533912021-01-28 00:49:49 +090041 "android.hardware.vibrator-V2-cpp",
Steven Morelandd44007e2019-10-24 18:12:46 -070042 ],
43 test_suites: [
Steven Moreland1c269782020-01-09 11:16:05 -080044 "general-tests",
Dan Shi3a8a6502020-03-26 00:06:39 -070045 "vts",
Steven Morelandd44007e2019-10-24 18:12:46 -070046 ],
47}