blob: bbeb28d0bcbaa83e1fba6fdb29a03011cf6bd61b [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",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040013 "bindgen.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070014 "builder.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020015 "clippy.go",
16 "compiler.go",
17 "coverage.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070018 "library.go",
19 "prebuilt.go",
20 "proc_macro.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020021 "project_json.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070022 "rust.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040023 "source_provider.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070024 "test.go",
25 "testing.go",
26 ],
27 testSrcs: [
28 "binary_test.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040029 "bindgen_test.go",
Ivan Lozano10735d92020-07-22 09:14:47 -040030 "builder_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020031 "clippy_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070032 "compiler_test.go",
33 "coverage_test.go",
34 "library_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020035 "project_json_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070036 "rust_test.go",
Ivan Lozanoff3a5b32020-08-05 13:28:32 -040037 "source_provider_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070038 "test_test.go",
39 ],
40 pluginFor: ["soong_build"],
41}