blob: cda2dbc6ad303b0b4026efa00b5ae91ee38bbe66 [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",
Thiébaud Weksteendf229cb2021-02-10 14:07:57 +010011 "soong-bloaty",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070012 "soong-cc",
13 "soong-rust-config",
Kiyoung Kim48f37782021-07-07 12:42:39 +090014 "soong-snapshot",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070015 ],
16 srcs: [
17 "androidmk.go",
Jakub Kotur1d640d02021-01-06 12:40:43 +010018 "benchmark.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070019 "binary.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040020 "bindgen.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070021 "builder.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020022 "clippy.go",
23 "compiler.go",
24 "coverage.go",
Dan Albert06feee92021-03-19 15:06:02 -070025 "doc.go",
Ivan Lozano6cd99e62020-02-11 08:24:25 -050026 "fuzz.go",
Ivan Lozano6a884432020-12-02 09:15:16 -050027 "image.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070028 "library.go",
29 "prebuilt.go",
30 "proc_macro.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020031 "project_json.go",
Treehugger Robot588aae72020-08-21 10:01:58 +000032 "protobuf.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070033 "rust.go",
Ivan Lozano6cd99e62020-02-11 08:24:25 -050034 "sanitize.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040035 "source_provider.go",
Ivan Lozano3149e6e2021-06-01 15:09:53 -040036 "snapshot_prebuilt.go",
Ivan Lozanod7586b62021-04-01 09:49:36 -040037 "snapshot_utils.go",
38 "strip.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070039 "test.go",
40 "testing.go",
41 ],
42 testSrcs: [
Jakub Kotur1d640d02021-01-06 12:40:43 +010043 "benchmark_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070044 "binary_test.go",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040045 "bindgen_test.go",
Ivan Lozano10735d92020-07-22 09:14:47 -040046 "builder_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020047 "clippy_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070048 "compiler_test.go",
49 "coverage_test.go",
Ivan Lozano6cd99e62020-02-11 08:24:25 -050050 "fuzz_test.go",
Ivan Lozano6a884432020-12-02 09:15:16 -050051 "image_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070052 "library_test.go",
Joel Galensonce7bbdc2021-09-23 08:26:53 -070053 "proc_macro_test.go",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020054 "project_json_test.go",
Treehugger Robot588aae72020-08-21 10:01:58 +000055 "protobuf_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070056 "rust_test.go",
Ivan Lozano62cd0382021-11-01 10:27:54 -040057 "sanitize_test.go",
Ivan Lozanoff3a5b32020-08-05 13:28:32 -040058 "source_provider_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070059 "test_test.go",
Ivan Lozano1921e802021-05-20 13:39:16 -040060 "vendor_snapshot_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070061 ],
62 pluginFor: ["soong_build"],
63}