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

Side by Side Diff: trunk/gyp

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
« trunk/AUTHORS ('K') | « trunk/LICENSE ('k') | trunk/gyp.bat » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env 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.
6
3 import sys 7 import sys
4 8
5 # TODO(mark): sys.path manipulation is some temporary testing stuff. 9 # TODO(mark): sys.path manipulation is some temporary testing stuff.
6 try: 10 try:
7 import gyp 11 import gyp
8 except ImportError, e: 12 except ImportError, e:
9 import os.path 13 import os.path
10 sys.path.append(os.path.join(os.path.dirname(sys.argv[0]), 'pylib')) 14 sys.path.append(os.path.join(os.path.dirname(sys.argv[0]), 'pylib'))
11 import gyp 15 import gyp
12 16
13 if __name__ == '__main__': 17 if __name__ == '__main__':
14 sys.exit(gyp.main(sys.argv[1:])) 18 sys.exit(gyp.main(sys.argv[1:]))
OLDNEW
« trunk/AUTHORS ('K') | « trunk/LICENSE ('k') | trunk/gyp.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698