OLD | NEW |
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 hash/crc64\ | 97 hash/crc64\ |
98 hash/fnv\ | 98 hash/fnv\ |
99 html\ | 99 html\ |
100 http\ | 100 http\ |
101 http/cgi\ | 101 http/cgi\ |
102 http/pprof\ | 102 http/pprof\ |
103 http/httptest\ | 103 http/httptest\ |
104 image\ | 104 image\ |
105 image/jpeg\ | 105 image/jpeg\ |
106 image/png\ | 106 image/png\ |
| 107 image/yuv\ |
107 index/suffixarray\ | 108 index/suffixarray\ |
108 io\ | 109 io\ |
109 io/ioutil\ | 110 io/ioutil\ |
110 json\ | 111 json\ |
111 log\ | 112 log\ |
112 math\ | 113 math\ |
113 mime\ | 114 mime\ |
114 mime/multipart\ | 115 mime/multipart\ |
115 net\ | 116 net\ |
116 net/dict\ | 117 net/dict\ |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 | 263 |
263 deps: | 264 deps: |
264 ./deps.bash | 265 ./deps.bash |
265 | 266 |
266 echo-dirs: | 267 echo-dirs: |
267 @echo $(DIRS) | 268 @echo $(DIRS) |
268 | 269 |
269 -include Make.deps | 270 -include Make.deps |
270 | 271 |
271 runtime/cgo.install: ../cmd/cgo.install | 272 runtime/cgo.install: ../cmd/cgo.install |
OLD | NEW |