blob: 712711099ce3071ffbc5718ec29fc83bcf65f080 [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,
24}