blob: b6d2fb27da34bf3124e35cf4eba8b0cc52184964 [file] [log] [blame]
Bob Badourc22b35b2021-02-23 14:26:20 -08001package {
Aditya Choudharyc5c6c622024-01-31 11:06:17 +00002 default_team: "trendy_team_haptics_framework",
Bob Badourc22b35b2021-02-23 14:26:20 -08003 // 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
Steven Morelandd44007e2019-10-24 18:12:46 -070011cc_test {
12 name: "VtsHalVibratorTargetTest",
13 defaults: [
14 "VtsHalTargetTestDefaults",
15 "use_libaidlvintf_gtest_helper_static",
16 ],
Chih-Hung Hsiehad1bf312022-02-17 21:56:13 -080017 tidy_timeout_srcs: ["VtsHalVibratorTargetTest.cpp"],
Steven Morelandd44007e2019-10-24 18:12:46 -070018 srcs: ["VtsHalVibratorTargetTest.cpp"],
19 shared_libs: [
20 "libbinder",
21 ],
22 static_libs: [
Jeongik Cha38533912021-01-28 00:49:49 +090023 "android.hardware.vibrator-V2-cpp",
Lais Andrade80b18612020-10-12 18:44:40 +000024 ],
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",
40 ],
41 static_libs: [
Jeongik Cha38533912021-01-28 00:49:49 +090042 "android.hardware.vibrator-V2-cpp",
Steven Morelandd44007e2019-10-24 18:12:46 -070043 ],
44 test_suites: [
Steven Moreland1c269782020-01-09 11:16:05 -080045 "general-tests",
Dan Shi3a8a6502020-03-26 00:06:39 -070046 "vts",
Steven Morelandd44007e2019-10-24 18:12:46 -070047 ],
48}