blob: 8b2aa30d09ca803f51250c4f5266a6c6c587e916 [file] [log] [blame]
Bob Badour02040de2021-02-03 18:08:28 -08001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
Jaewoong Jung4b79e982020-06-01 10:45:49 -07005bootstrap_go_package {
6 name: "soong-rust",
7 pkgPath: "android/soong/rust",
8 deps: [
9 "soong",
10 "soong-android",
11 "soong-cc",
12 "soong-rust-config",
13 ],
14 srcs: [
15 "androidmk.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070016 "binary.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040017 "bindgen.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070018 "builder.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020019 "clippy.go",
20 "compiler.go",
21 "coverage.go",
Ivan Lozano6cd99e62020-02-11 08:24:25 -050022 "fuzz.go",
Ivan Lozano6a884432020-12-02 09:15:16 -050023 "image.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070024 "library.go",
25 "prebuilt.go",
26 "proc_macro.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020027 "project_json.go",
Treehugger Robot588aae72020-08-21 10:01:58 +000028 "protobuf.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070029 "rust.go",
Ivan Lozano6cd99e62020-02-11 08:24:25 -050030 "sanitize.go",
Thiébaud Weksteenfabaff62020-08-27 13:48:36 +020031 "strip.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040032 "source_provider.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070033 "test.go",
34 "testing.go",
35 ],
36 testSrcs: [
37 "binary_test.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040038 "bindgen_test.go",
Ivan Lozano10735d92020-07-22 09:14:47 -040039 "builder_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020040 "clippy_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070041 "compiler_test.go",
42 "coverage_test.go",
Ivan Lozano6cd99e62020-02-11 08:24:25 -050043 "fuzz_test.go",
Ivan Lozano6a884432020-12-02 09:15:16 -050044 "image_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070045 "library_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020046 "project_json_test.go",
Treehugger Robot588aae72020-08-21 10:01:58 +000047 "protobuf_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070048 "rust_test.go",
Ivan Lozanoff3a5b32020-08-05 13:28:32 -040049 "source_provider_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070050 "test_test.go",
51 ],
52 pluginFor: ["soong_build"],
53}