blob: 622604f0ed47ecda243c3c5b75921db489d8602c [file] [log] [blame]
Stephen Crane2a3c2502020-06-16 17:48:35 -07001rust_test {
2 name: "rustBinderTest",
3 srcs: ["integration.rs"],
4 rustlibs: [
5 "libbinder_rs",
6 ],
7 // For the binaries to be pushed properly as specified in AndroidTest.xml,
8 // this cannot be the same as the module name.
9 stem: "rustBinderTestClientBinary",
10 test_suites: ["general-tests"],
11}
12
13rust_test {
14 name: "rustBinderTestService",
15 srcs: ["integration.rs"],
16 rustlibs: [
17 "libbinder_rs",
18 "liblibc",
19 ],
20 // For the binaries to be pushed properly as specified in AndroidTest.xml,
21 // this cannot be the same as the module name.
22 stem: "rustBinderTestServiceBinary",
23 test_harness: false,
Dan Shif80ad1a2020-08-14 12:51:32 -070024 // TODO(b/164473602): Remove this setting and add the module to `data`
25 // attribute of rustBinderTest.
26 auto_gen_config: false,
27 test_suites: ["general-tests"],
Stephen Crane2a3c2502020-06-16 17:48:35 -070028}