Victor Hsieh | 045f1e6 | 2021-08-03 12:04:34 -0700 | [diff] [blame] | 1 | package { |
| 2 | default_applicable_licenses: ["Android-Apache-2.0"], |
| 3 | } |
| 4 | |
| 5 | rust_binary { |
| 6 | name: "authfs_service", |
| 7 | srcs: [ |
| 8 | "src/main.rs", |
| 9 | ], |
Alan Stokes | 6472ccd | 2022-08-31 13:41:28 +0100 | [diff] [blame] | 10 | edition: "2021", |
Victor Hsieh | 045f1e6 | 2021-08-03 12:04:34 -0700 | [diff] [blame] | 11 | rustlibs: [ |
| 12 | "authfs_aidl_interface-rust", |
| 13 | "libandroid_logger", |
| 14 | "libanyhow", |
| 15 | "libbinder_rs", |
| 16 | "liblibc", |
| 17 | "liblog_rust", |
| 18 | "libnix", |
Alice Wang | 15ae7b9 | 2022-10-24 14:36:59 +0000 | [diff] [blame] | 19 | "librpcbinder_rs", |
Alice Wang | fd222fd | 2023-05-25 09:37:38 +0000 | [diff] [blame] | 20 | "librustutils", |
Victor Hsieh | 045f1e6 | 2021-08-03 12:04:34 -0700 | [diff] [blame] | 21 | "libshared_child", |
| 22 | ], |
| 23 | prefer_rlib: true, |
Victor Hsieh | 8bb67b6 | 2021-08-04 12:10:58 -0700 | [diff] [blame] | 24 | init_rc: ["authfs_service.rc"], |
Victor Hsieh | 045f1e6 | 2021-08-03 12:04:34 -0700 | [diff] [blame] | 25 | } |