1package { 2 default_team: "trendy_team_fwk_core_networking", 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 "packages_modules_DnsResolver_license" 6 // to get the below license kinds: 7 // SPDX-license-identifier-Apache-2.0 8 default_applicable_licenses: ["packages_modules_DnsResolver_license"], 9} 10 11rust_ffi_static { 12 name: "libdoh_frontend_ffi", 13 crate_name: "doh_frontend_ffi", 14 srcs: ["src/mod.rs"], 15 edition: "2018", 16 17 rlibs: [ 18 "liblibc", 19 "liblog_rust", 20 "libandroid_logger", 21 "libanyhow", 22 "libquiche", 23 "liblazy_static", 24 "libtokio", 25 "libbase64_rust", 26 ], 27 28 // TODO(b/194022174): this is a workaround for resolv_integration_test to run on Q devices. 29 whole_static_libs: ["libunwind"], 30} 31