OLD | NEW |
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 Loading... |
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()) |
OLD | NEW |