go/ssa: reduce set of expected indirect imports
...now that gc's export data records fewer dependencies. Change-Id: Ie0f68f1f7b0825f6d2c100dfe189be017383db60 Reviewed-on: https://go-review.googlesource.com/22584 Reviewed-by: Robert Griesemer <gri@golang.org>
This commit is contained in:
parent
c5c16cf68a
commit
686d0ad5b8
|
@ -69,8 +69,9 @@ func main() {
|
||||||
deps := []string{
|
deps := []string{
|
||||||
// directly imported dependencies:
|
// directly imported dependencies:
|
||||||
"bytes", "io", "testing",
|
"bytes", "io", "testing",
|
||||||
// indirect dependencies (partial list):
|
// indirect dependencies mentioned by
|
||||||
"errors", "fmt", "os", "runtime",
|
// the direct imports' export data
|
||||||
|
"sync", "unicode", "time",
|
||||||
}
|
}
|
||||||
|
|
||||||
prog := mainPkg.Prog
|
prog := mainPkg.Prog
|
||||||
|
|
Loading…
Reference in New Issue