blob: 943db357fcf78b78a1f2bd0f8c99200c4ce51e90 [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",
15 "libbinder_rs",
16 "liblibc",
17 "liblog_rust",
18 "libnix",
19 "libshared_child",
20 ],
21 prefer_rlib: true,
Victor Hsieh8bb67b62021-08-04 12:10:58 -070022 init_rc: ["authfs_service.rc"],
Victor Hsieh045f1e62021-08-03 12:04:34 -070023}