blob: 123f8b365641890ed54bf0447712508fc5adcd9b [file] [log] [blame]
Kevin Rocard6891d7e2017-12-14 18:39:39 -08001//
Kevin Rocardb34af7c2017-12-15 09:31:30 -08002// Copyright (C) 2016 The Android Open Source Project
Kevin Rocard6891d7e2017-12-14 18:39:39 -08003//
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
16cc_library_shared {
17 name: "android.hardware.audio.common@2.0-util",
18 defaults: ["hidl_defaults"],
Kevin Rocard49c56de2018-01-17 15:57:39 -080019 vendor: true,
Kevin Rocard6891d7e2017-12-14 18:39:39 -080020 srcs: [
21 "HidlUtils.cpp",
22 ],
23
24 export_include_dirs: ["."],
25
26 static_libs: [
27 ],
28
29 shared_libs: [
30 "liblog",
31 "libutils",
32 "libhidlbase",
33 "android.hardware.audio.common-util",
34 "android.hardware.audio.common@2.0",
35 ],
36 export_shared_lib_headers: [
37 "android.hardware.audio.common-util"
38 ],
39
40 header_libs: [
Kevin Rocard49c56de2018-01-17 15:57:39 -080041 "android.hardware.audio.common.legacy@2.0",
Kevin Rocard6891d7e2017-12-14 18:39:39 -080042 "libhardware_headers",
43 ],
44}