• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_team: "trendy_team_fwk_nfc",
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 "system_nfc_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["system_nfc_license"],
9}
10
11rust_binary {
12    name: "nfc_rootcanal_test",
13    defaults: ["nfc_rust_defaults"],
14    srcs: ["main.rs"],
15    rustlibs: [
16        "libnfc_packets",
17        "libnfc_rnci",
18        "libbytes",
19        "libthiserror",
20        "liblogger",
21        "liblog_rust",
22        "libtokio",
23    ],
24    proc_macros: ["libnum_derive"],
25}
26