]> Cypherpunks repositories - gostls13.git/commitdiff
go/build: add back deps for runtime/pprof/internal/gzip0
authorMichael Matloob <matloob@golang.org>
Mon, 31 Oct 2016 15:30:59 +0000 (15:30 +0000)
committerMichael Matloob <matloob@golang.org>
Mon, 31 Oct 2016 18:05:59 +0000 (18:05 +0000)
These were accidentally removed by a rollback cl: golang.org/cl/32441

Change-Id: I0cfa8b3397be324dabfb8f33b6548a03c10571eb
Reviewed-on: https://go-review.googlesource.com/32334
Reviewed-by: Alan Donovan <adonovan@google.com>
src/go/build/deps_test.go

index f1b9e1dd5f1b243422fcb7bebe47d5e8e404c799..cb101abe7c3c15dbcba20003a71700b757ce5b1f 100644 (file)
@@ -170,12 +170,13 @@ var pkgDeps = map[string][]string{
        "log": {"L1", "os", "fmt", "time"},
 
        // Packages used by testing must be low-level (L2+fmt).
-       "regexp":         {"L2", "regexp/syntax"},
-       "regexp/syntax":  {"L2"},
-       "runtime/debug":  {"L2", "fmt", "io/ioutil", "os", "time"},
-       "runtime/pprof":  {"L2", "fmt", "os", "text/tabwriter"},
-       "runtime/trace":  {"L0"},
-       "text/tabwriter": {"L2"},
+       "regexp":                       {"L2", "regexp/syntax"},
+       "regexp/syntax":                {"L2"},
+       "runtime/debug":                {"L2", "fmt", "io/ioutil", "os", "time"},
+       "runtime/pprof/internal/gzip0": {"L2"},
+       "runtime/pprof":                {"L2", "fmt", "os", "text/tabwriter"},
+       "runtime/trace":                {"L0"},
+       "text/tabwriter":               {"L2"},
 
        "testing":          {"L2", "flag", "fmt", "os", "runtime/debug", "runtime/pprof", "runtime/trace", "time"},
        "testing/iotest":   {"L2", "log"},