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.1", 17 "libbase", 18 "libhidl-gen-utils", 19 "libhidlbase", 20 "liblog", 21 "libutils", 22 ], 23 24 test_suites: ["general-tests"], 25 require_root: true, 26} 27 28cc_binary { 29 name: "hidl_lazy_test_server", 30 system_ext_specific: true, 31 32 vintf_fragments: ["hidl_lazy_test_server.xml"], 33 init_rc: ["hidl_lazy_test_server.rc"], 34 35 srcs: ["hidl_lazy_test_server.cpp"], 36 37 shared_libs: [ 38 "android.hardware.tests.lazy@1.1", 39 "libbase", 40 "libhidlbase", 41 "libutils", 42 ], 43} 44