Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(89)

Delta Between Two Patch Sets: src/pkg/go/build/deps_test.go

Issue 12541051: code review 12541051: encoding: new package (Closed)
Left Patch Set: diff -r e052a6dba066 https://code.google.com/p/go/ Created 10 years, 7 months ago
Right Patch Set: diff -r 2ca230b93195 https://code.google.com/p/go/ Created 10 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/encoding/encoding.go ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2012 The Go Authors. All rights reserved. 1 // Copyright 2012 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 // This file exercises the import parser but also checks that 5 // This file exercises the import parser but also checks that
6 // some low-level packages do not have new dependencies added. 6 // some low-level packages do not have new dependencies added.
7 7
8 package build 8 package build
9 9
10 import ( 10 import (
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 "compress/gzip": {"L4", "compress/flate"}, 185 "compress/gzip": {"L4", "compress/flate"},
186 "compress/lzw": {"L4"}, 186 "compress/lzw": {"L4"},
187 "compress/zlib": {"L4", "compress/flate"}, 187 "compress/zlib": {"L4", "compress/flate"},
188 "database/sql": {"L4", "database/sql/driver"}, 188 "database/sql": {"L4", "database/sql/driver"},
189 "database/sql/driver": {"L4", "time"}, 189 "database/sql/driver": {"L4", "time"},
190 "debug/dwarf": {"L4"}, 190 "debug/dwarf": {"L4"},
191 "debug/elf": {"L4", "OS", "debug/dwarf"}, 191 "debug/elf": {"L4", "OS", "debug/dwarf"},
192 "debug/gosym": {"L4"}, 192 "debug/gosym": {"L4"},
193 "debug/macho": {"L4", "OS", "debug/dwarf"}, 193 "debug/macho": {"L4", "OS", "debug/dwarf"},
194 "debug/pe": {"L4", "OS", "debug/dwarf"}, 194 "debug/pe": {"L4", "OS", "debug/dwarf"},
195 "encoding": {"L4"},
195 "encoding/ascii85": {"L4"}, 196 "encoding/ascii85": {"L4"},
196 "encoding/asn1": {"L4", "math/big"}, 197 "encoding/asn1": {"L4", "math/big"},
197 "encoding/csv": {"L4"}, 198 "encoding/csv": {"L4"},
198 » "encoding/gob": {"L4", "OS"}, 199 » "encoding/gob": {"L4", "OS", "encoding"},
199 "encoding/hex": {"L4"}, 200 "encoding/hex": {"L4"},
200 » "encoding/json": {"L4"}, 201 » "encoding/json": {"L4", "encoding"},
201 "encoding/pem": {"L4"}, 202 "encoding/pem": {"L4"},
202 "encoding/xml": {"L4"}, 203 "encoding/xml": {"L4"},
203 "flag": {"L4", "OS"}, 204 "flag": {"L4", "OS"},
204 "go/build": {"L4", "OS", "GOPARSER"}, 205 "go/build": {"L4", "OS", "GOPARSER"},
205 "html": {"L4"}, 206 "html": {"L4"},
206 "image/draw": {"L4"}, 207 "image/draw": {"L4"},
207 "image/gif": {"L4", "compress/lzw", "image/draw"}, 208 "image/gif": {"L4", "compress/lzw", "image/draw"},
208 "image/jpeg": {"L4"}, 209 "image/jpeg": {"L4"},
209 "image/png": {"L4", "compress/zlib"}, 210 "image/png": {"L4", "compress/zlib"},
210 "index/suffixarray": {"L4", "regexp"}, 211 "index/suffixarray": {"L4", "regexp"},
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 } 418 }
418 419
419 for _, ctxt.GOOS = range geese { 420 for _, ctxt.GOOS = range geese {
420 for _, ctxt.GOARCH = range goarches { 421 for _, ctxt.GOARCH = range goarches {
421 for _, ctxt.CgoEnabled = range bools { 422 for _, ctxt.CgoEnabled = range bools {
422 test(false) 423 test(false)
423 } 424 }
424 } 425 }
425 } 426 }
426 } 427 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b