Give prebuilt_etc and sh_binary their own packages and split the gigantic main Android.bp up to small, per-package ones. Test: m nothing, TreeHugger Bug: 156980228 Change-Id: I7b00cd344b9f16861f1ff39edf0029f016b853d0
33 lines
668 B
Plaintext
33 lines
668 B
Plaintext
bootstrap_go_package {
|
|
name: "soong-rust",
|
|
pkgPath: "android/soong/rust",
|
|
deps: [
|
|
"soong",
|
|
"soong-android",
|
|
"soong-cc",
|
|
"soong-rust-config",
|
|
],
|
|
srcs: [
|
|
"androidmk.go",
|
|
"compiler.go",
|
|
"coverage.go",
|
|
"binary.go",
|
|
"builder.go",
|
|
"library.go",
|
|
"prebuilt.go",
|
|
"proc_macro.go",
|
|
"rust.go",
|
|
"test.go",
|
|
"testing.go",
|
|
],
|
|
testSrcs: [
|
|
"binary_test.go",
|
|
"compiler_test.go",
|
|
"coverage_test.go",
|
|
"library_test.go",
|
|
"rust_test.go",
|
|
"test_test.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|