blob: ec426c73a48e3dfd00668d077aa4a43e1aca135a [file] [log] [blame]
Alice Wange4829c82022-10-18 14:05:28 +00001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5java_library_host {
6 name: "AuthFsHostTestCommon",
7 srcs: ["src/java/**/*.java"],
8 libs: [
9 "compatibility-host-util",
10 "compatibility-tradefed",
11 "tradefed",
12 ],
13 static_libs: [
14 "MicrodroidHostTestHelper",
15 ],
16}
17
18rust_test {
19 name: "open_then_run",
20 crate_name: "open_then_run",
21 srcs: ["src/open_then_run.rs"],
22 edition: "2021",
23 rustlibs: [
24 "libandroid_logger",
25 "libanyhow",
26 "libclap",
27 "libcommand_fds",
28 "liblibc",
29 "liblog_rust",
30 ],
31 test_suites: ["general-tests"],
32 test_harness: false,
33}