1// Copyright (C) 2022 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 15package { 16 default_applicable_licenses: ["Android-Apache-2.0"], 17} 18 19cc_defaults { 20 name: "vhalclient_defaults", 21 cflags: [ 22 "-Wall", 23 "-Wno-missing-field-initializers", 24 "-Werror", 25 "-Wno-unused-variable", 26 "-Wunused-parameter", 27 ], 28 static_libs: [ 29 "VehicleHalUtils", 30 "android-automotive-large-parcelable-lib", 31 // We have to use static lib here because either one of them might not 32 // exist as a shared library. 33 "android.hardware.automotive.vehicle@2.0", 34 "android.hardware.automotive.vehicle-V1-ndk", 35 "libmath", 36 ], 37 shared_libs: [ 38 "libbinder_ndk", 39 "libhidlbase", 40 "liblog", 41 "libutils", 42 ], 43 defaults: [ 44 "android-automotive-large-parcelable-defaults", 45 ], 46} 47 48cc_library { 49 name: "libvhalclient", 50 srcs: [ 51 "src/*.cpp", 52 ], 53 defaults: [ 54 "vhalclient_defaults", 55 ], 56 vendor_available: true, 57 local_include_dirs: ["include"], 58 export_include_dirs: ["include"], 59} 60