blob: 2101a364c6bdd7bd912f5c32409dabc3bf70987c [file] [log] [blame]
Victor Hsieh045f1e62021-08-03 12:04:34 -07001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5rust_binary {
6 name: "authfs_service",
7 srcs: [
8 "src/main.rs",
9 ],
Alan Stokes6472ccd2022-08-31 13:41:28 +010010 edition: "2021",
Victor Hsieh045f1e62021-08-03 12:04:34 -070011 rustlibs: [
12 "authfs_aidl_interface-rust",
13 "libandroid_logger",
14 "libanyhow",
15 "libbinder_rs",
16 "liblibc",
17 "liblog_rust",
18 "libnix",
Alice Wang15ae7b92022-10-24 14:36:59 +000019 "librpcbinder_rs",
Alice Wangfd222fd2023-05-25 09:37:38 +000020 "librustutils",
Victor Hsieh045f1e62021-08-03 12:04:34 -070021 "libshared_child",
22 ],
23 prefer_rlib: true,
Victor Hsieh8bb67b62021-08-04 12:10:58 -070024 init_rc: ["authfs_service.rc"],
Victor Hsieh045f1e62021-08-03 12:04:34 -070025}