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 json | 7 import json |
8 import os | 8 import os |
9 import sys | 9 import sys |
10 import urllib | 10 import urllib |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 CheckActiveRoll, | 133 CheckActiveRoll, |
134 DetectLastPush, | 134 DetectLastPush, |
135 DetectLastRoll, | 135 DetectLastRoll, |
136 CheckClusterFuzz, | 136 CheckClusterFuzz, |
137 RollChromium, | 137 RollChromium, |
138 ] | 138 ] |
139 | 139 |
140 | 140 |
141 if __name__ == "__main__": # pragma: no cover | 141 if __name__ == "__main__": # pragma: no cover |
142 sys.exit(AutoRoll().Run()) | 142 sys.exit(AutoRoll().Run()) |
OLD | NEW |