Bob Badour | 3306e49 | 2021-02-25 15:35:37 -0800 | [diff] [blame] | 1 | package { |
| 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 "frameworks_native_license" |
| 5 | // to get the below license kinds: |
| 6 | // SPDX-license-identifier-Apache-2.0 |
| 7 | default_applicable_licenses: ["frameworks_native_license"], |
| 8 | } |
| 9 | |
Steven Moreland | 2364614 | 2017-04-07 10:46:25 -0700 | [diff] [blame] | 10 | cc_library_shared { |
| 11 | name: "libschedulerservicehidl", |
| 12 | srcs: [ |
| 13 | "SchedulingPolicyService.cpp", |
| 14 | ], |
Chih-Hung Hsieh | 65e4838 | 2017-10-05 14:27:01 -0700 | [diff] [blame] | 15 | cflags: ["-Wall", "-Werror"], |
Steven Moreland | 2364614 | 2017-04-07 10:46:25 -0700 | [diff] [blame] | 16 | shared_libs: [ |
| 17 | "libhidlbase", |
Steven Moreland | 2364614 | 2017-04-07 10:46:25 -0700 | [diff] [blame] | 18 | "libmediautils", |
| 19 | "liblog", |
| 20 | "libutils", |
Steven Moreland | 2364614 | 2017-04-07 10:46:25 -0700 | [diff] [blame] | 21 | "android.frameworks.schedulerservice@1.0", |
| 22 | ], |
| 23 | header_libs: [ |
| 24 | "libcutils_headers", |
| 25 | ], |
| 26 | export_include_dirs: [ |
| 27 | "include/" |
| 28 | ], |
| 29 | local_include_dirs: [ |
| 30 | "include/schedulerservice/", |
| 31 | ], |
| 32 | } |