Steven Moreland | 2e87adc | 2018-08-20 19:47:00 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | cc_library { |
| 18 | name: "libbinder_ndk", |
| 19 | vendor_available: false, |
| 20 | |
| 21 | export_include_dirs: [ |
| 22 | "include_ndk", |
| 23 | "include_apex", |
| 24 | ], |
| 25 | |
| 26 | srcs: [ |
Steven Moreland | 4d5ad49 | 2018-09-13 12:49:16 -0700 | [diff] [blame^] | 27 | "ibinder.cpp", |
| 28 | "parcel.cpp", |
| 29 | "process.cpp", |
| 30 | "service_manager.cpp", |
Steven Moreland | 2e87adc | 2018-08-20 19:47:00 -0700 | [diff] [blame] | 31 | ], |
| 32 | |
| 33 | shared_libs: [ |
| 34 | "libbase", |
| 35 | "libbinder", |
| 36 | "libutils", |
| 37 | ], |
| 38 | } |