Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Unified Diff: tools/proto-gae/proto_gae.go

Issue 2021753002: Change gae to apache 2 license. (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « symbols.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/proto-gae/proto_gae.go
diff --git a/tools/proto-gae/proto_gae.go b/tools/proto-gae/proto_gae.go
index 7ec4e5a989da7d647ea66269bdac47588dd1f306..b4b3ef946bc47988b645cf068d28cbe3d5b64b3f 100644
--- a/tools/proto-gae/proto_gae.go
+++ b/tools/proto-gae/proto_gae.go
@@ -1,6 +1,6 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
+// Copyright 2015 The LUCI Authors. All rights reserved.
+// Use of this source code is governed under the Apache License, Version 2.0
+// that can be found in the LICENSE file.
package main
@@ -41,9 +41,9 @@ methods for the named types.
Options:
`
-const copyright = `// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
+const copyright = `// Copyright 2016 The LUCI Authors. All rights reserved.
M-A Ruel 2016/05/30 18:28:23 Unrelated to this CL but it should take time.Now()
+// Use of this source code is governed under the Apache License, Version 2.0
+// that can be found in the LICENSE file.
`
func (a *app) parseArgs(fs *flag.FlagSet, args []string) error {
@@ -58,7 +58,7 @@ func (a *app) parseArgs(fs *flag.FlagSet, args []string) error {
fs.StringVar(&a.outFile, "out", "proto_gae.gen.go",
"The name of the output file")
fs.StringVar(&a.header, "header", copyright, "Header text to put at the top of "+
- "the generated file. Defaults to the Chromium Authors copyright.")
+ "the generated file. Defaults to the LUCI Authors copyright.")
if err := fs.Parse(args[1:]); err != nil {
return err
« no previous file with comments | « symbols.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698