blob: df731db4b54b4684158f35ae0ea81eaded220c08 [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 Lozano6a884432020-12-02 09:15:16 -050018 "image.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070019 "library.go",
20 "prebuilt.go",
21 "proc_macro.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020022 "project_json.go",
Treehugger Robot588aae72020-08-21 10:01:58 +000023 "protobuf.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070024 "rust.go",
Thiébaud Weksteenfabaff62020-08-27 13:48:36 +020025 "strip.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040026 "source_provider.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070027 "test.go",
28 "testing.go",
29 ],
30 testSrcs: [
31 "binary_test.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040032 "bindgen_test.go",
Ivan Lozano10735d92020-07-22 09:14:47 -040033 "builder_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020034 "clippy_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070035 "compiler_test.go",
36 "coverage_test.go",
Ivan Lozano6a884432020-12-02 09:15:16 -050037 "image_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070038 "library_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020039 "project_json_test.go",
Treehugger Robot588aae72020-08-21 10:01:58 +000040 "protobuf_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070041 "rust_test.go",
Ivan Lozanoff3a5b32020-08-05 13:28:32 -040042 "source_provider_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070043 "test_test.go",
44 ],
45 pluginFor: ["soong_build"],
46}