Test: mm in all rust enabled directories Change-Id: I3454c840adb7a9823637f0ae874355e4df995b66
22 lines
354 B
Go
22 lines
354 B
Go
package config
|
|
|
|
var (
|
|
RustAllowedPaths = []string{
|
|
"external/rust",
|
|
"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",
|
|
}
|
|
)
|