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

Side by Side Diff: build/experimental/install-build-deps.py

Issue 1576883002: Move install-build-deps.py to build/experimental (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | build/install-build-deps.py » ('j') | 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 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
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:]))
OLDNEW
« no previous file with comments | « no previous file | build/install-build-deps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698