2ae0513a8e
rust_library now produces only rlib and dylib variants. rust_library_foreign now produces static and shared variants. This change was made because both are common cases, but all four together essentially never happens. This allows us to have fewer repeat module definitions. Bug: 143217452 Test: cd external/rust; mma Change-Id: Iaf69e8da38f7c12710331c51464699cf7cbbb656
31 lines
559 B
Go
31 lines
559 B
Go
package config
|
|
|
|
var (
|
|
RustAllowedPaths = []string{
|
|
"external/minijail",
|
|
"external/rust",
|
|
"external/crosvm",
|
|
"external/adhd",
|
|
"prebuilts/rust",
|
|
}
|
|
|
|
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",
|
|
}
|
|
)
|