• 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 "hardware_interfaces_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["hardware_interfaces_license"],
8}
9
10rust_binary {
11    name: "android.hardware.security.dice-service.non-secure-software",
12    srcs: ["service.rs"],
13    relative_install_path: "hw",
14    vendor: true,
15    rustlibs: [
16        "android.hardware.security.dice-V1-rust",
17        "libdiced_open_dice_cbor",
18        "libdiced_sample_inputs",
19        "libdiced_vendor",
20        "libandroid_logger",
21        "libanyhow",
22        "libbinder_rs",
23        "liblog_rust",
24        "libserde",
25    ],
26    init_rc: ["android.hardware.security.dice-service.non-secure-software.rc"],
27    vintf_fragments: [
28        "android.hardware.security.dice-service.non-secure-software.xml",
29    ],
30}
31