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

Side by Side Diff: trunk/pylib/gyp/__init__.py

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.
6
3 import copy 7 import copy
4 import gyp.input 8 import gyp.input
5 import optparse 9 import optparse
6 import os.path 10 import os.path
7 import re 11 import re
8 import shlex 12 import shlex
9 import sys 13 import sys
10 14
11 # Default debug modes for GYP 15 # Default debug modes for GYP
12 debug = {} 16 debug = {}
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 # need to have dependencies defined before dependents reference them should 429 # need to have dependencies defined before dependents reference them should
426 # generate targets in the order specified in flat_list. 430 # generate targets in the order specified in flat_list.
427 generator.GenerateOutput(flat_list, targets, data, params) 431 generator.GenerateOutput(flat_list, targets, data, params)
428 432
429 # Done 433 # Done
430 return 0 434 return 0
431 435
432 436
433 if __name__ == '__main__': 437 if __name__ == '__main__':
434 sys.exit(main(sys.argv[1:])) 438 sys.exit(main(sys.argv[1:]))
OLDNEW
« trunk/AUTHORS ('K') | « trunk/pylib/gyp/SCons.py ('k') | trunk/pylib/gyp/common.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698