blob: 53555f511c3443f25433557aa59d2ab07763b6f9 [file] [log] [blame]
Dan Willemsen86e247a2017-12-18 21:10:37 -08001// Copyright (C) 2012 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
Bob Badourd7984cc2021-02-12 20:51:13 -080015package {
16 // See: http://go/android-license-faq
17 // A large-scale-change added 'default_applicable_licenses' to import
18 // all of the 'license_kinds' from "hardware_libhardware_license"
19 // to get the below license kinds:
20 // SPDX-license-identifier-Apache-2.0
21 default_applicable_licenses: ["hardware_libhardware_license"],
22}
23
Dan Willemsen86e247a2017-12-18 21:10:37 -080024cc_library_shared {
25 name: "audio.r_submix.default",
26 relative_install_path: "hw",
27 vendor: true,
28 srcs: ["audio_hw.cpp"],
Dan Willemsen86e247a2017-12-18 21:10:37 -080029 shared_libs: [
30 "liblog",
31 "libcutils",
Inseob Kim0e88ff02019-07-19 15:31:55 +090032 "libmedia_helper",
Kevin Rocardc6ec9482018-01-24 06:04:27 +000033 "libnbaio_mono",
Inseob Kim0e88ff02019-07-19 15:31:55 +090034 "libutils",
Dan Willemsen86e247a2017-12-18 21:10:37 -080035 ],
Dan Willemsen86e247a2017-12-18 21:10:37 -080036
37 cflags: ["-Wno-unused-parameter"],
38
39 header_libs: ["libhardware_headers"],
40}