36 lines
675 B
Go
36 lines
675 B
Go
package config
|
|
|
|
var (
|
|
RustAllowedPaths = []string{
|
|
"external/minijail",
|
|
"external/rust",
|
|
"external/crosvm",
|
|
"external/adhd",
|
|
"frameworks/native/libs/binder/rust",
|
|
"prebuilts/rust",
|
|
"system/extras/profcollectd",
|
|
"system/security",
|
|
"system/tools/aidl",
|
|
}
|
|
|
|
RustModuleTypes = []string{
|
|
"rust_binary",
|
|
"rust_binary_host",
|
|
"rust_library",
|
|
"rust_library_dylib",
|
|
"rust_library_rlib",
|
|
"rust_ffi",
|
|
"rust_ffi_shared",
|
|
"rust_ffi_static",
|
|
"rust_library_host",
|
|
"rust_library_host_dylib",
|
|
"rust_library_host_rlib",
|
|
"rust_ffi_host",
|
|
"rust_ffi_host_shared",
|
|
"rust_ffi_host_static",
|
|
"rust_proc_macro",
|
|
"rust_test",
|
|
"rust_test_host",
|
|
}
|
|
)
|