blob: 8618207a1a3fba23f83f39c5f7fd1546d5be5493 [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",
Treehugger Robot588aae72020-08-21 10:01:58 +000022 "protobuf.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070023 "rust.go",
Thiébaud Weksteenfabaff62020-08-27 13:48:36 +020024 "strip.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040025 "source_provider.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070026 "test.go",
27 "testing.go",
28 ],
29 testSrcs: [
30 "binary_test.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040031 "bindgen_test.go",
Ivan Lozano10735d92020-07-22 09:14:47 -040032 "builder_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020033 "clippy_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070034 "compiler_test.go",
35 "coverage_test.go",
36 "library_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020037 "project_json_test.go",
Treehugger Robot588aae72020-08-21 10:01:58 +000038 "protobuf_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070039 "rust_test.go",
Ivan Lozanoff3a5b32020-08-05 13:28:32 -040040 "source_provider_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070041 "test_test.go",
42 ],
43 pluginFor: ["soong_build"],
44}