Files
build_soong/rust/Android.bp
Jakub Kotur 1d640d0521 Add rust_benchmark module to soong.
This commit adds rust_benchmark and rust_benchmark_host commands to
soong. Respectively running rust benchmarks on device and host. Currently
only criterion based benchmarks are supported and criterion library is
automatically linked.

Test: atest <module with rust_benchmark defined>
Bug: 155309706
Change-Id: I6edfc2b4bf30b1163fe59b8c2ecdcd4e7125e7b9
2021-04-06 12:40:32 +02:00

57 lines
1.2 KiB
Plaintext

package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
bootstrap_go_package {
name: "soong-rust",
pkgPath: "android/soong/rust",
deps: [
"soong",
"soong-android",
"soong-bloaty",
"soong-cc",
"soong-rust-config",
],
srcs: [
"androidmk.go",
"benchmark.go",
"binary.go",
"bindgen.go",
"builder.go",
"clippy.go",
"compiler.go",
"coverage.go",
"fuzz.go",
"image.go",
"library.go",
"prebuilt.go",
"proc_macro.go",
"project_json.go",
"protobuf.go",
"rust.go",
"sanitize.go",
"strip.go",
"source_provider.go",
"test.go",
"testing.go",
],
testSrcs: [
"benchmark_test.go",
"binary_test.go",
"bindgen_test.go",
"builder_test.go",
"clippy_test.go",
"compiler_test.go",
"coverage_test.go",
"fuzz_test.go",
"image_test.go",
"library_test.go",
"project_json_test.go",
"protobuf_test.go",
"rust_test.go",
"source_provider_test.go",
"test_test.go",
],
pluginFor: ["soong_build"],
}