38 lines
751 B
Plaintext
38 lines
751 B
Plaintext
// system/audio.h utilities test
|
|
|
|
package {
|
|
// http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// the below license kinds from "system_media_license":
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["system_media_license"],
|
|
}
|
|
|
|
cc_test {
|
|
name: "systemaudio_tests",
|
|
|
|
shared_libs: [
|
|
"libaudiofoundation",
|
|
"libbase",
|
|
"liblog",
|
|
"libmedia_helper",
|
|
"libutils",
|
|
],
|
|
|
|
header_libs: ["libmedia_headers"],
|
|
|
|
srcs: [
|
|
"static_checks_c.c",
|
|
"static_checks.cpp",
|
|
"systemaudio_tests.cpp",
|
|
],
|
|
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall",
|
|
],
|
|
|
|
test_suites: ["device-tests"],
|
|
|
|
}
|