blob: ad2bbd86be04c89a2f47b2b3946ad2e4a4c9a05b [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",
Thiébaud Weksteenfabaff62020-08-27 13:48:36 +020023 "strip.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040024 "source_provider.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070025 "test.go",
26 "testing.go",
27 ],
28 testSrcs: [
29 "binary_test.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040030 "bindgen_test.go",
Ivan Lozano10735d92020-07-22 09:14:47 -040031 "builder_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020032 "clippy_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070033 "compiler_test.go",
34 "coverage_test.go",
35 "library_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020036 "project_json_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070037 "rust_test.go",
Ivan Lozanoff3a5b32020-08-05 13:28:32 -040038 "source_provider_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070039 "test_test.go",
40 ],
41 pluginFor: ["soong_build"],
42}