blob: d56de870fb32fb15db75b514db4d922655b40184 [file] [log] [blame]
Jaewoong Jung4b79e982020-06-01 10:45:49 -07001bootstrap_go_package {
2 name: "soong-rust",
3 pkgPath: "android/soong/rust",
4 deps: [
5 "soong",
6 "soong-android",
7 "soong-cc",
8 "soong-rust-config",
9 ],
10 srcs: [
11 "androidmk.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070012 "binary.go",
13 "builder.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020014 "clippy.go",
15 "compiler.go",
16 "coverage.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070017 "library.go",
18 "prebuilt.go",
19 "proc_macro.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020020 "project_json.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070021 "rust.go",
22 "test.go",
23 "testing.go",
24 ],
25 testSrcs: [
26 "binary_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020027 "clippy_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070028 "compiler_test.go",
29 "coverage_test.go",
30 "library_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020031 "project_json_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070032 "rust_test.go",
33 "test_test.go",
34 ],
35 pluginFor: ["soong_build"],
36}