123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- // Bluetooth Audio library for target
- // ========================================================
- cc_library_static {
- name: "libbt-audio-hal-interface",
- defaults: ["fluoride_defaults"],
- include_dirs: [
- "system/bt",
- "system/bt/bta/include",
- "system/bt/bta/sys",
- "system/bt/btif/include",
- "system/bt/stack/include",
- ],
- srcs: [
- "a2dp_encoding.cc",
- "client_interface.cc",
- "hearing_aid_software_encoding.cc",
- ],
- shared_libs: [
- "[email protected]",
- "libfmq",
- "libhidlbase",
- "libhidltransport",
- ],
- static_libs: [
- "libosi",
- "libbt-common",
- ],
- cflags: [
- "-DBUILDCFG",
- ],
- }
- // Bluetooth Audio client interface library unit tests for target and host
- // ========================================================
- cc_test {
- name: "bluetooth-test-audio-hal-interface",
- defaults: ["fluoride_defaults"],
- include_dirs: [
- "system/bt",
- ],
- srcs: [
- "client_interface_unittest.cc",
- ],
- shared_libs: [
- "[email protected]",
- "libcutils",
- "libfmq",
- "libhidlbase",
- "libhidltransport",
- "liblog",
- "libutils",
- ],
- static_libs: [
- "libbt-audio-hal-interface",
- "libbt-common",
- ],
- cflags: [
- "-DBUILDCFG",
- ],
- }
|