blob: b18aeec4fd5f501358da63527abcd28e69f1f3fd [file] [log] [blame]
Bob Badour56786ac2021-02-25 15:24:36 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_av_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_av_license"],
8}
9
Dan Willemsen32959132017-10-30 13:36:57 -070010cc_test {
11 name: "aaudio_loopback",
12 gtest: false,
13 srcs: ["src/loopback.cpp"],
Chih-Hung Hsiehb922c2e2017-11-29 14:00:30 -080014 cflags: ["-Wall", "-Werror"],
Phil Burk4a764a32018-01-02 14:21:59 -080015 static_libs: ["libsndfile"],
Phil Burk2c87dda2020-09-11 23:14:48 +000016 include_dirs: ["external/oboe/apps/OboeTester/app/src/main/cpp"],
Phil Burk4a764a32018-01-02 14:21:59 -080017 shared_libs: [
18 "libaaudio",
Kevin Rocard07be14f2018-01-24 06:14:03 +000019 "libaudioutils",
Phil Burk2c87dda2020-09-11 23:14:48 +000020 "liblog"
Phil Burk4a764a32018-01-02 14:21:59 -080021 ],
Dan Willemsen32959132017-10-30 13:36:57 -070022 header_libs: ["libaaudio_example_utils"],
Dan Willemsen32959132017-10-30 13:36:57 -070023}