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

Side by Side Diff: trunk/samples/samples

Issue 306051: Add AUTHORS and LICENSE files, and copyright headers to relevant source files... (Closed) Base URL: http://gyp.googlecode.com/svn/
Patch Set: '' Created 11 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 # Copyright (c) 2009 Google Inc. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
3 6
4 import os.path 7 import os.path
5 import shutil 8 import shutil
6 import sys 9 import sys
7 10
8 11
9 gyps = [ 12 gyps = [
10 'app/app.gyp', 13 'app/app.gyp',
11 'base/base.gyp', 14 'base/base.gyp',
12 'build/temp_gyp/googleurl.gyp', 15 'build/temp_gyp/googleurl.gyp',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 print 'Copying %s to %s' % (chrome_file, local_file) 72 print 'Copying %s to %s' % (chrome_file, local_file)
70 shutil.copyfile(chrome_file, local_file) 73 shutil.copyfile(chrome_file, local_file)
71 else: 74 else:
72 assert False 75 assert False
73 76
74 return 0 77 return 0
75 78
76 79
77 if __name__ == '__main__': 80 if __name__ == '__main__':
78 sys.exit(Main(sys.argv)) 81 sys.exit(Main(sys.argv))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698