blob: 301e733186bd61e03cac57061aebf9a522e2e851 [file] [log] [blame]
Shikha Panwar566c9672022-11-15 14:39:58 +00001package {
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 "libclap",
14 "libhex",
15 "liblog_rust",
16 "libnix",
17 "libdm_rust",
18 ],
19 multilib: {
20 lib32: {
21 enabled: false,
22 },
23 },
24}
25
26rust_binary {
27 name: "encryptedstore",
28 defaults: ["encryptedstore.defaults"],
29 bootstrap: true,
30}