• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 "packages_modules_DnsResolver_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["packages_modules_DnsResolver_license"],
8}
9
10rust_ffi_static {
11    name: "libdoh_frontend_ffi",
12    crate_name: "doh_frontend_ffi",
13    srcs: ["src/lib.rs"],
14    edition: "2018",
15
16    rlibs: [
17        "liblibc",
18        "liblog_rust",
19        "libandroid_logger",
20        "libanyhow",
21        "libquiche",
22        "libring",
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