blob: c68e370a1ec7a64700d0f2dd50fe49c1f69a8840 [file] [log] [blame]
Bob Badourb224b362021-02-12 20:13:01 -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
Miao Wangb78b2f42017-01-20 10:30:38 -080010cc_library_shared {
11 name: "android.hardware.renderscript@1.0-impl",
Steven Moreland691a4552017-03-08 15:58:46 -080012 defaults: ["hidl_defaults"],
Miao Wangb78b2f42017-01-20 10:30:38 -080013 relative_install_path: "hw",
14 proprietary: true,
15 srcs: [
16 "Context.cpp",
17 "Device.cpp",
18 ],
19 include_dirs: [
20 "frameworks/rs",
21 ],
22 shared_libs: [
23 "libdl",
Brian Carlstrom3f2d71f2018-01-24 19:22:30 -080024 "libbase",
Miao Wangb78b2f42017-01-20 10:30:38 -080025 "libhidlbase",
Miao Wangb78b2f42017-01-20 10:30:38 -080026 "libutils",
27 "android.hardware.renderscript@1.0",
Miao Wangb78b2f42017-01-20 10:30:38 -080028 ],
Miao Wang41d8a442017-05-16 15:36:54 -070029
30 product_variables: {
31 override_rs_driver: {
32 cflags: ["-DOVERRIDE_RS_DRIVER=%s"],
33 },
34 },
35
Miao Wangb78b2f42017-01-20 10:30:38 -080036}