You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "system_bt_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["system_bt_license"],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "audio_hearing_aid_hw_defaults",
|
|
defaults: ["fluoride_defaults"],
|
|
include_dirs: [
|
|
"system/bt",
|
|
],
|
|
}
|
|
|
|
// Audio A2DP shared library for target
|
|
// ========================================================
|
|
cc_library {
|
|
name: "audio.hearing_aid.default",
|
|
defaults: ["audio_hearing_aid_hw_defaults"],
|
|
relative_install_path: "hw",
|
|
srcs: [
|
|
"src/audio_hearing_aid_hw.cc",
|
|
"src/audio_hearing_aid_hw_utils.cc",
|
|
],
|
|
shared_libs: [
|
|
"liblog",
|
|
],
|
|
static_libs: ["libosi"],
|
|
}
|
|
|
|
// Audio A2DP library unit tests for target and host
|
|
// ========================================================
|
|
cc_test {
|
|
name: "net_test_audio_hearing_aid_hw",
|
|
test_suites: ["device-tests"],
|
|
defaults: ["audio_hearing_aid_hw_defaults"],
|
|
srcs: [
|
|
"test/audio_hearing_aid_hw_test.cc",
|
|
],
|
|
shared_libs: [
|
|
"liblog",
|
|
],
|
|
static_libs: [
|
|
"audio.hearing_aid.default",
|
|
"libosi",
|
|
],
|
|
}
|