OLD | NEW |
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 os | 7 import os |
8 import sys | 8 import sys |
9 | 9 |
10 from common_includes import * | 10 from common_includes import * |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 SwitchChromium, | 146 SwitchChromium, |
147 UpdateChromiumCheckout, | 147 UpdateChromiumCheckout, |
148 UploadCL, | 148 UploadCL, |
149 SwitchV8, | 149 SwitchV8, |
150 CleanUp, | 150 CleanUp, |
151 ] | 151 ] |
152 | 152 |
153 | 153 |
154 if __name__ == "__main__": # pragma: no cover | 154 if __name__ == "__main__": # pragma: no cover |
155 sys.exit(ChromiumRoll().Run()) | 155 sys.exit(ChromiumRoll().Run()) |
OLD | NEW |