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

Side by Side Diff: tools/release/auto_tag.py

Issue 868473004: External name changes of release scripts. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2014 the V8 project authors. All rights reserved. 2 # Copyright 2014 the V8 project 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 import argparse 6 import argparse
7 import sys 7 import sys
8 8
9 from common_includes import * 9 from common_includes import *
10 10
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 GetOldestUntaggedVersion, 192 GetOldestUntaggedVersion,
193 GetLKGRs, 193 GetLKGRs,
194 CalculateTagRevision, 194 CalculateTagRevision,
195 MakeTag, 195 MakeTag,
196 CleanUp, 196 CleanUp,
197 ] 197 ]
198 198
199 199
200 if __name__ == "__main__": # pragma: no cover 200 if __name__ == "__main__": # pragma: no cover
201 sys.exit(AutoTag().Run()) 201 sys.exit(AutoTag().Run())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698