• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5rust_defaults {
6    name: "encryptedstore.defaults",
7    srcs: ["src/main.rs"],
8    edition: "2021",
9    prefer_rlib: true,
10    rustlibs: [
11        "libandroid_logger",
12        "libanyhow",
13        "liblibc",
14        "libclap",
15        "libhex",
16        "liblog_rust",
17        "libnix",
18        "libdm_rust",
19    ],
20    multilib: {
21        lib32: {
22            enabled: false,
23        },
24    },
25}
26
27rust_binary {
28    name: "encryptedstore",
29    defaults: ["encryptedstore.defaults"],
30    bootstrap: true,
31}
32
33rust_test {
34    name: "encryptedstore.test",
35    defaults: ["encryptedstore.defaults"],
36    test_suites: ["general-tests"],
37}
38