LEFT | RIGHT |
1 # Copyright 2009 The Go Authors. All rights reserved. | 1 # Copyright 2009 The Go Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style | 2 # Use of this source code is governed by a BSD-style |
3 # license that can be found in the LICENSE file. | 3 # license that can be found in the LICENSE file. |
4 | 4 |
5 # After editing the DIRS= list or adding imports to any Go files | 5 # After editing the DIRS= list or adding imports to any Go files |
6 # in any of those directories, run: | 6 # in any of those directories, run: |
7 # | 7 # |
8 # ./deps.bash | 8 # ./deps.bash |
9 # | 9 # |
10 # to rebuild the dependency information in Make.deps. | 10 # to rebuild the dependency information in Make.deps. |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 expvar\ | 83 expvar\ |
84 flag\ | 84 flag\ |
85 fmt\ | 85 fmt\ |
86 go/ast\ | 86 go/ast\ |
87 go/doc\ | 87 go/doc\ |
88 go/parser\ | 88 go/parser\ |
89 go/printer\ | 89 go/printer\ |
90 go/scanner\ | 90 go/scanner\ |
91 go/token\ | 91 go/token\ |
92 go/typechecker\ | 92 go/typechecker\ |
| 93 go/types\ |
93 gob\ | 94 gob\ |
94 hash\ | 95 hash\ |
95 hash/adler32\ | 96 hash/adler32\ |
96 hash/crc32\ | 97 hash/crc32\ |
97 hash/crc64\ | 98 hash/crc64\ |
98 hash/fnv\ | 99 hash/fnv\ |
99 html\ | 100 html\ |
100 http\ | 101 http\ |
101 http/cgi\ | 102 http/cgi\ |
102 http/pprof\ | 103 http/pprof\ |
103 http/httptest\ | 104 http/httptest\ |
104 image\ | 105 image\ |
105 image/jpeg\ | 106 image/jpeg\ |
106 image/png\ | 107 image/png\ |
107 » image/yuv\ | 108 » image/ycbcr\ |
108 index/suffixarray\ | 109 index/suffixarray\ |
109 io\ | 110 io\ |
110 io/ioutil\ | 111 io/ioutil\ |
111 json\ | 112 json\ |
112 log\ | 113 log\ |
113 math\ | 114 math\ |
114 mime\ | 115 mime\ |
115 mime/multipart\ | 116 mime/multipart\ |
116 net\ | 117 net\ |
117 net/dict\ | 118 net/dict\ |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 | 264 |
264 deps: | 265 deps: |
265 ./deps.bash | 266 ./deps.bash |
266 | 267 |
267 echo-dirs: | 268 echo-dirs: |
268 @echo $(DIRS) | 269 @echo $(DIRS) |
269 | 270 |
270 -include Make.deps | 271 -include Make.deps |
271 | 272 |
272 runtime/cgo.install: ../cmd/cgo.install | 273 runtime/cgo.install: ../cmd/cgo.install |
LEFT | RIGHT |