1// Build the unit tests.
2package {
3    default_team: "trendy_team_android_media_audio_framework",
4    // See: http://go/android-license-faq
5    default_applicable_licenses: [
6        "Android-Apache-2.0",
7        "frameworks_wilhelm_license", // MIT
8    ],
9}
10
11cc_test {
12    name: "libopenslestests",
13
14    shared_libs: ["libOpenSLES"],
15
16    srcs: ["mimeUri_test.cpp"],
17
18    cflags: [
19        "-Werror",
20        "-Wall",
21        "-Wno-deprecated-declarations",
22    ],
23}
24
25// Build the manual test programs.
26subdirs = ["*"]
27