blob: 13ef1b9b15f259e98c18e945f082220b97cc04cf [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",
Shikha Panwar9fd198f2022-11-18 17:43:43 +000013 "liblibc",
Shikha Panwar566c9672022-11-15 14:39:58 +000014 "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}