blob: 6e59bcf99af638dfd3192291693e164b8689b6fe [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
Craig Donner8fd4c612016-10-14 17:53:46 -070010cc_library_shared {
11 name: "android.hardware.vr@1.0-impl",
Steven Moreland48c52242017-03-08 16:11:32 -080012 defaults: ["hidl_defaults"],
Steven Morelanda0da1a12017-02-13 09:59:06 -080013 proprietary: true,
Craig Donner8fd4c612016-10-14 17:53:46 -070014 relative_install_path: "hw",
15 srcs: ["Vr.cpp"],
16 shared_libs: [
17 "liblog",
18 "libcutils",
19 "libhardware",
Craig Donner8fd4c612016-10-14 17:53:46 -070020 "libbase",
21 "libcutils",
22 "libutils",
Yifan Hong6b920e42016-11-16 14:17:58 -080023 "libhidlbase",
Craig Donner8fd4c612016-10-14 17:53:46 -070024 "android.hardware.vr@1.0",
25 ],
26}
Craig Donnerdf9c9fa2017-01-31 16:30:53 -080027
28cc_binary {
29 relative_install_path: "hw",
Steven Moreland48c52242017-03-08 16:11:32 -080030 defaults: ["hidl_defaults"],
Steven Morelanda0da1a12017-02-13 09:59:06 -080031 proprietary: true,
Craig Donnerdf9c9fa2017-01-31 16:30:53 -080032 name: "android.hardware.vr@1.0-service",
33 init_rc: ["android.hardware.vr@1.0-service.rc"],
34 srcs: ["service.cpp"],
35 shared_libs: [
36 "liblog",
37 "libdl",
38 "libutils",
39 "libhardware",
40 "libhidlbase",
Craig Donnerdf9c9fa2017-01-31 16:30:53 -080041 "android.hardware.vr@1.0",
42 ],
43}