Amend list of required Rust stdlib libraries.
Add libtest to our list of stdlib libraries, and remove some others that are only used when generating proc_macros (which aren't dynamic). Bug: 141207434 Test: m -j crosvm.experimental Change-Id: I39cb030940adf1993e861d0142378eeea8b1ff5e
This commit is contained in:
parent
9c27df7d4d
commit
6d9e712858
1 changed files with 1 additions and 7 deletions
|
@ -26,15 +26,9 @@ var (
|
||||||
RustDefaultBase = "prebuilts/rust/"
|
RustDefaultBase = "prebuilts/rust/"
|
||||||
DefaultEdition = "2018"
|
DefaultEdition = "2018"
|
||||||
Stdlibs = []string{
|
Stdlibs = []string{
|
||||||
"libarena",
|
|
||||||
"libfmt_macros",
|
|
||||||
"libgraphviz",
|
|
||||||
"libserialize",
|
|
||||||
"libstd",
|
"libstd",
|
||||||
"libsyntax",
|
|
||||||
"libsyntax_ext",
|
|
||||||
"libsyntax_pos",
|
|
||||||
"libterm",
|
"libterm",
|
||||||
|
"libtest",
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue