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