1package { 2 default_team: "trendy_team_media_framework_audio", 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_av_license" 6 // to get the below license kinds: 7 // SPDX-license-identifier-Apache-2.0 8 default_applicable_licenses: ["frameworks_av_license"], 9} 10 11cc_test { 12 name: "write_sine", 13 srcs: ["src/write_sine.cpp"], 14 cflags: [ 15 "-Wall", 16 "-Werror", 17 ], 18 shared_libs: ["libaaudio"], 19 header_libs: ["libaaudio_example_utils"], 20} 21 22cc_test { 23 name: "write_sine_callback", 24 srcs: ["src/write_sine_callback.cpp"], 25 cflags: [ 26 "-Wall", 27 "-Werror", 28 ], 29 shared_libs: ["libaaudio"], 30 header_libs: ["libaaudio_example_utils"], 31} 32