• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 "system_tools_hidl_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["system_tools_hidl_license"],
8}
9
10cc_test {
11    name: "hidl_lazy_test",
12    defaults: ["hidl-gen-defaults"],
13    srcs: ["hidl_lazy_test.cpp"],
14
15    shared_libs: [
16        "android.hardware.tests.lazy@1.0",
17        "android.hardware.tests.lazy@1.1",
18        "android.hardware.tests.lazy_cb@1.0",
19        "libbase",
20        "libcutils",
21        "libhidl-gen-utils",
22        "libhidlbase",
23        "liblog",
24        "libutils",
25    ],
26
27    test_suites: ["general-tests"],
28    require_root: true,
29}
30
31cc_binary {
32    name: "hidl_lazy_test_server",
33    system_ext_specific: true,
34
35    vintf_fragments: ["hidl_lazy_test_server.xml"],
36    init_rc: ["hidl_lazy_test_server.rc"],
37
38    srcs: ["hidl_lazy_test_server.cpp"],
39
40    shared_libs: [
41        "android.hardware.tests.lazy@1.0",
42        "android.hardware.tests.lazy@1.1",
43        "android.hardware.tests.lazy_cb@1.0",
44        "libbase",
45        "libhidlbase",
46        "libutils",
47    ],
48}
49
50cc_binary {
51    name: "hidl_lazy_cb_test_server",
52    system_ext_specific: true,
53
54    vintf_fragments: ["hidl_lazy_cb_test_server.xml"],
55    init_rc: ["hidl_lazy_cb_test_server.rc"],
56
57    srcs: ["hidl_lazy_cb_test_server.cpp"],
58
59    shared_libs: [
60        "android.hardware.tests.lazy_cb@1.0",
61        "libbase",
62        "libhidlbase",
63        "libutils",
64    ],
65}
66