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

Side by Side Diff: chrome/tools/build/appid.py

Issue 8680018: Fix python scripts in src/chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: copyright Created 9 years 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/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """ 6 """
7 appid.py -- Chromium appid header file generation utility. 7 appid.py -- Chromium appid header file generation utility.
8 """ 8 """
9 9
10 import optparse 10 import optparse
11 import sys 11 import sys
12 12
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 # Log a trace in the build output when we run. 48 # Log a trace in the build output when we run.
49 print "Generating appid header... ", 49 print "Generating appid header... ",
50 GenerateAppIdHeader(opts) 50 GenerateAppIdHeader(opts)
51 51
52 print "Done." 52 print "Done."
53 53
54 54
55 if __name__ == '__main__': 55 if __name__ == '__main__':
56 sys.exit(main()) 56 sys.exit(main())
OLDNEW
« no previous file with comments | « chrome/tools/automated_ui_test_tools/ui_action_generator.py ('k') | chrome/tools/build/generate_policy_source.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698