1// Build the unit tests. 2package { 3 // See: http://go/android-license-faq 4 // A large-scale-change added 'default_applicable_licenses' to import 5 // all of the 'license_kinds' from "frameworks_wilhelm_license" 6 // to get the below license kinds: 7 // SPDX-license-identifier-Apache-2.0 8 // SPDX-license-identifier-MIT 9 default_applicable_licenses: ["frameworks_wilhelm_license"], 10} 11 12cc_test { 13 name: "libopenslestests", 14 15 shared_libs: ["libOpenSLES"], 16 17 srcs: ["mimeUri_test.cpp"], 18 19 cflags: [ 20 "-Werror", 21 "-Wall", 22 "-Wno-deprecated-declarations", 23 ], 24} 25 26// Build the manual test programs. 27subdirs = ["*"] 28