1package { 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 "system_bt_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["system_bt_license"], 8} 9 10cc_test { 11 name: "libaptx_enc_tests", 12 defaults: [ 13 "bluetooth_gtest_x86_asan_workaround", 14 "mts_defaults", 15 ], 16 test_suites: ["device-tests"], 17 host_supported: true, 18 test_options: { 19 unit_test: true, 20 }, 21 srcs: ["src/aptx.cc"], 22 whole_static_libs: ["libaptx_enc"], 23 sanitize: { 24 address: true, 25 cfi: true, 26 }, 27 min_sdk_version: "33", 28} 29 30cc_test { 31 name: "libaptxhd_enc_tests", 32 defaults: [ 33 "bluetooth_gtest_x86_asan_workaround", 34 "mts_defaults", 35 ], 36 test_suites: ["device-tests"], 37 host_supported: true, 38 test_options: { 39 unit_test: true, 40 }, 41 srcs: ["src/aptxhd.cc"], 42 whole_static_libs: ["libaptxhd_enc"], 43 sanitize: { 44 address: true, 45 cfi: true, 46 }, 47 min_sdk_version: "33", 48} 49