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 29 matching lines...) Expand all Loading... |
40 crypto/ocsp\ | 40 crypto/ocsp\ |
41 crypto/rand\ | 41 crypto/rand\ |
42 crypto/rc4\ | 42 crypto/rc4\ |
43 crypto/ripemd160\ | 43 crypto/ripemd160\ |
44 crypto/rsa\ | 44 crypto/rsa\ |
45 crypto/sha1\ | 45 crypto/sha1\ |
46 crypto/sha256\ | 46 crypto/sha256\ |
47 crypto/sha512\ | 47 crypto/sha512\ |
48 crypto/subtle\ | 48 crypto/subtle\ |
49 crypto/tls\ | 49 crypto/tls\ |
| 50 crypto/twofish\ |
50 crypto/x509\ | 51 crypto/x509\ |
51 crypto/xtea\ | 52 crypto/xtea\ |
52 debug/dwarf\ | 53 debug/dwarf\ |
53 debug/macho\ | 54 debug/macho\ |
54 debug/elf\ | 55 debug/elf\ |
55 debug/gosym\ | 56 debug/gosym\ |
56 debug/pe\ | 57 debug/pe\ |
57 debug/proc\ | 58 debug/proc\ |
58 ebnf\ | 59 ebnf\ |
59 encoding/ascii85\ | 60 encoding/ascii85\ |
60 encoding/base64\ | 61 encoding/base64\ |
61 encoding/binary\ | 62 encoding/binary\ |
62 encoding/git85\ | 63 encoding/git85\ |
63 encoding/hex\ | 64 encoding/hex\ |
| 65 encoding/line\ |
64 encoding/pem\ | 66 encoding/pem\ |
65 exec\ | 67 exec\ |
66 exp/datafmt\ | 68 exp/datafmt\ |
67 exp/draw\ | 69 exp/draw\ |
68 exp/draw/x11\ | 70 exp/draw/x11\ |
69 exp/eval\ | 71 exp/eval\ |
70 expvar\ | 72 expvar\ |
71 flag\ | 73 flag\ |
72 fmt\ | 74 fmt\ |
73 go/ast\ | 75 go/ast\ |
(...skipping 30 matching lines...) Expand all Loading... |
104 os/signal\ | 106 os/signal\ |
105 patch\ | 107 patch\ |
106 path\ | 108 path\ |
107 rand\ | 109 rand\ |
108 reflect\ | 110 reflect\ |
109 regexp\ | 111 regexp\ |
110 rpc\ | 112 rpc\ |
111 rpc/jsonrpc\ | 113 rpc/jsonrpc\ |
112 runtime\ | 114 runtime\ |
113 runtime/cgo\ | 115 runtime/cgo\ |
| 116 runtime/debug\ |
114 runtime/pprof\ | 117 runtime/pprof\ |
115 scanner\ | 118 scanner\ |
116 smtp\ | 119 smtp\ |
117 sort\ | 120 sort\ |
118 strconv\ | 121 strconv\ |
119 strings\ | 122 strings\ |
120 sync\ | 123 sync\ |
121 syscall\ | 124 syscall\ |
122 syslog\ | 125 syslog\ |
123 tabwriter\ | 126 tabwriter\ |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 | 234 |
232 deps: | 235 deps: |
233 ./deps.bash | 236 ./deps.bash |
234 | 237 |
235 echo-dirs: | 238 echo-dirs: |
236 @echo $(DIRS) | 239 @echo $(DIRS) |
237 | 240 |
238 -include Make.deps | 241 -include Make.deps |
239 | 242 |
240 runtime/cgo.install: ../cmd/cgo.install | 243 runtime/cgo.install: ../cmd/cgo.install |
LEFT | RIGHT |