Steven Moreland | ff189a0 | 2017-09-15 16:22:48 -0700 | [diff] [blame] | 1 | // Copyright (C) 2017 The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
Steven Moreland | b518491 | 2017-11-13 14:22:36 -0800 | [diff] [blame] | 15 | cc_library { |
Steven Moreland | ff189a0 | 2017-09-15 16:22:48 -0700 | [diff] [blame] | 16 | name: "libhidladapter", |
Chih-Hung Hsieh | e6a7feb | 2017-10-02 10:47:55 -0700 | [diff] [blame] | 17 | defaults: ["libhidl-defaults"], |
Steven Moreland | abf0ea1 | 2017-09-25 17:08:28 -0700 | [diff] [blame] | 18 | vendor_available: true, |
Steven Moreland | ff189a0 | 2017-09-15 16:22:48 -0700 | [diff] [blame] | 19 | srcs: [ |
| 20 | "HidlBinderAdapter.cpp" |
| 21 | ], |
| 22 | export_include_dirs: ["include"], |
| 23 | shared_libs: [ |
Steven Moreland | 3269d85 | 2018-01-03 11:13:17 -0800 | [diff] [blame] | 24 | "libbase", |
Steven Moreland | ff189a0 | 2017-09-15 16:22:48 -0700 | [diff] [blame] | 25 | "libhidlbase", |
Steven Moreland | 3269d85 | 2018-01-03 11:13:17 -0800 | [diff] [blame] | 26 | "liblog", |
Steven Moreland | ff189a0 | 2017-09-15 16:22:48 -0700 | [diff] [blame] | 27 | "libutils", |
| 28 | ], |
| 29 | export_shared_lib_headers: [ |
| 30 | "libhidlbase", |
Steven Moreland | ff189a0 | 2017-09-15 16:22:48 -0700 | [diff] [blame] | 31 | "libutils", |
| 32 | ], |
| 33 | } |
| 34 | |