blob: ad3040afdfbe494ca6eeba464dc19f0189264af7 [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",
Ivan Lozano6cd99e62020-02-11 08:24:25 -050018 "fuzz.go",
Ivan Lozano6a884432020-12-02 09:15:16 -050019 "image.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070020 "library.go",
21 "prebuilt.go",
22 "proc_macro.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020023 "project_json.go",
Treehugger Robot588aae72020-08-21 10:01:58 +000024 "protobuf.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070025 "rust.go",
Ivan Lozano6cd99e62020-02-11 08:24:25 -050026 "sanitize.go",
Thiébaud Weksteenfabaff62020-08-27 13:48:36 +020027 "strip.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040028 "source_provider.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070029 "test.go",
30 "testing.go",
31 ],
32 testSrcs: [
33 "binary_test.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040034 "bindgen_test.go",
Ivan Lozano10735d92020-07-22 09:14:47 -040035 "builder_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020036 "clippy_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070037 "compiler_test.go",
38 "coverage_test.go",
Ivan Lozano6cd99e62020-02-11 08:24:25 -050039 "fuzz_test.go",
Ivan Lozano6a884432020-12-02 09:15:16 -050040 "image_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070041 "library_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020042 "project_json_test.go",
Treehugger Robot588aae72020-08-21 10:01:58 +000043 "protobuf_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070044 "rust_test.go",
Ivan Lozanoff3a5b32020-08-05 13:28:32 -040045 "source_provider_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070046 "test_test.go",
47 ],
48 pluginFor: ["soong_build"],
49}