• 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 "system_nfc_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["system_nfc_license"],
8}
9
10rust_binary {
11    name: "nfc_rootcanal",
12    defaults: ["nfc_rust_defaults"],
13    srcs: ["main.rs"],
14    rustlibs: [
15        "libnfc_packets",
16        "libbytes",
17        "libthiserror",
18        "liblogger",
19        "liblog_rust",
20        "libtokio",
21    ],
22    proc_macros: ["libnum_derive"],
23}
24