blob: 6c32c676527586a6abc6df2c293c8510c8d82511 [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 ],
10 edition: "2018",
11 rustlibs: [
12 "authfs_aidl_interface-rust",
13 "libandroid_logger",
14 "libanyhow",
Alan Stokes3189af02021-09-30 17:51:19 +010015 "libbinder_common",
Victor Hsieh045f1e62021-08-03 12:04:34 -070016 "libbinder_rs",
17 "liblibc",
18 "liblog_rust",
19 "libnix",
20 "libshared_child",
21 ],
22 prefer_rlib: true,
Victor Hsieh8bb67b62021-08-04 12:10:58 -070023 init_rc: ["authfs_service.rc"],
Victor Hsieh045f1e62021-08-03 12:04:34 -070024}