blob: 684db0bdde87fe41f53e1bbaf5e1ca017e3b8dc5 [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",
12 "compiler.go",
13 "coverage.go",
14 "binary.go",
15 "builder.go",
16 "library.go",
17 "prebuilt.go",
18 "proc_macro.go",
19 "rust.go",
20 "test.go",
21 "testing.go",
22 ],
23 testSrcs: [
24 "binary_test.go",
25 "compiler_test.go",
26 "coverage_test.go",
27 "library_test.go",
28 "rust_test.go",
29 "test_test.go",
30 ],
31 pluginFor: ["soong_build"],
32}