Files
build_soong/rust/config/whitelist.go
Ivan Lozano e169ad70a5 Add OWNERS for Rust whitelist.
Splits out the Rust paths whitelist into a separate file
under config/ so that OWNERS can be defined for it.

Bug: 141207129
Test: m -j crosvm.experimental
Change-Id: I5effa6783e5c47560b4b1eae12ad0eb9e9ba96fe
2019-09-18 12:46:28 -07:00

22 lines
361 B
Go

package config
var (
RustAllowedPaths = []string{
"external/rust/crates",
"external/crosvm",
"external/adhd",
}
RustModuleTypes = []string{
"rust_binary",
"rust_binary_host",
"rust_library",
"rust_library_dylib",
"rust_library_rlib",
"rust_library_host",
"rust_library_host_dylib",
"rust_library_host_rlib",
"rust_proc_macro",
}
)