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

Side by Side Diff: remoting/tools/uuidgen.py

Issue 10837087: [Chromoting] Auto-generate CLSID of the daemon controller at GYP time. This makes sure that a fresh… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 8 years, 4 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
« no previous file with comments | « remoting/tools/candle_and_light.py ('k') | no next file » | 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 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 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 """
7 uuidgen.py -- UUID generation utility.
8 """
9
6 import sys 10 import sys
7 11 import uuid
8 12
9 def main(): 13 def main():
10 print 'Failing' 14 print uuid.uuid4()
11 return 1 15 return 0
12
13 16
14 if __name__ == '__main__': 17 if __name__ == '__main__':
15 sys.exit(main()) 18 sys.exit(main())
OLDNEW
« no previous file with comments | « remoting/tools/candle_and_light.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698