| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2015 The Chromium Authors. All rights reserved. | 2 # Copyright 2015 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 import argparse | 6 import argparse |
| 7 import operator | 7 import operator |
| 8 import os | 8 import os |
| 9 import platform | 9 import platform |
| 10 import re | 10 import re |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 packages = sorted(set(packages), key=packages_key) | 421 packages = sorted(set(packages), key=packages_key) |
| 422 | 422 |
| 423 if args.quick_check: | 423 if args.quick_check: |
| 424 return quick_check(packages) | 424 return quick_check(packages) |
| 425 | 425 |
| 426 return 0 | 426 return 0 |
| 427 | 427 |
| 428 | 428 |
| 429 if __name__ == '__main__': | 429 if __name__ == '__main__': |
| 430 sys.exit(main(sys.argv[1:])) | 430 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |