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

Delta Between Two Patch Sets: dashboard/app/build/build.go

Issue 12180043: code review 12180043: go.tools: add dashboard
Left Patch Set: diff -r 79ec8d3bcf1d https://code.google.com/p/go/ Created 11 years, 8 months ago
Right Patch Set: diff -r 79ec8d3bcf1d https://code.google.com/p/go/ Created 11 years, 8 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « dashboard/app/app.yaml ('k') | dashboard/app/build/handler.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 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
5 // +build appengine
4 6
5 package build 7 package build
adg 2013/07/31 23:46:28 please add a build rule above this line (but with
cmang 2013/07/31 23:56:07 Done.
6 8
7 import ( 9 import (
8 "bytes" 10 "bytes"
9 "compress/gzip" 11 "compress/gzip"
10 "crypto/sha1" 12 "crypto/sha1"
11 "errors" 13 "errors"
12 "fmt" 14 "fmt"
13 "io" 15 "io"
14 "io/ioutil" 16 "io/ioutil"
15 "strings" 17 "strings"
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 break 323 break
322 } else if err != nil { 324 } else if err != nil {
323 return nil, err 325 return nil, err
324 } 326 }
325 if pkg.Path != "" { 327 if pkg.Path != "" {
326 pkgs = append(pkgs, pkg) 328 pkgs = append(pkgs, pkg)
327 } 329 }
328 } 330 }
329 return pkgs, nil 331 return pkgs, nil
330 } 332 }
LEFTRIGHT

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