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 "external_rust_crates_libsqlite3-sys_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-MIT
7    default_applicable_licenses: [
8        "external_rust_crates_libsqlite3-sys_license",
9    ],
10}
11
12rust_binary_host {
13    name: "sqlite3_bindgen_build",
14    host_cross_supported: false,
15    srcs: ["build.rs"],
16    rustlibs: [
17        "libbindgen",
18        "libbindgen_cmd",
19    ],
20    lints: "android",
21    clippy_lints: "android",
22}
23