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

Side by Side Diff: DEPS

Issue 598493002: Cleanup: Remove the instances of "rm_binaries.py" from 'src/tools/gn/bin' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | tools/gn/bin/rm_binaries.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 # This file is automatically processed to create .DEPS.git which is the file 1 # This file is automatically processed to create .DEPS.git which is the file
2 # that gclient uses under git. 2 # that gclient uses under git.
3 # 3 #
4 # See http://code.google.com/p/chromium/wiki/UsingGit 4 # See http://code.google.com/p/chromium/wiki/UsingGit
5 # 5 #
6 # To test manually, run: 6 # To test manually, run:
7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir>
8 # where <gcliendir> is the absolute path to the directory containing the 8 # where <gcliendir> is the absolute path to the directory containing the
9 # .gclient file (the parent of 'src'). 9 # .gclient file (the parent of 'src').
10 # 10 #
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 'name': 'gn_linux64', 663 'name': 'gn_linux64',
664 'pattern': '.', 664 'pattern': '.',
665 'action': [ 'download_from_google_storage', 665 'action': [ 'download_from_google_storage',
666 '--no_resume', 666 '--no_resume',
667 '--platform=linux*', 667 '--platform=linux*',
668 '--no_auth', 668 '--no_auth',
669 '--bucket', 'chromium-gn', 669 '--bucket', 'chromium-gn',
670 '-s', 'src/buildtools/linux64/gn.sha1', 670 '-s', 'src/buildtools/linux64/gn.sha1',
671 ], 671 ],
672 }, 672 },
673 {
674 # Remove GN binaries from tools/gn/bin that aren't used anymore.
675 # TODO(brettw) remove after the end of July, 2014.
676 'name': 'remove_old_gn_binaries',
677 'pattern': '.',
678 'action': ['python', 'src/tools/gn/bin/rm_binaries.py'],
679 },
680 # Pull clang-format binaries using checked-in hashes. 673 # Pull clang-format binaries using checked-in hashes.
681 { 674 {
682 'name': 'clang_format_win', 675 'name': 'clang_format_win',
683 'pattern': '.', 676 'pattern': '.',
684 'action': [ 'download_from_google_storage', 677 'action': [ 'download_from_google_storage',
685 '--no_resume', 678 '--no_resume',
686 '--platform=win32', 679 '--platform=win32',
687 '--no_auth', 680 '--no_auth',
688 '--bucket', 'chromium-clang-format', 681 '--bucket', 'chromium-clang-format',
689 '-s', 'src/buildtools/win/clang-format.exe.sha1', 682 '-s', 'src/buildtools/win/clang-format.exe.sha1',
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 # corresponding .py files have already been deleted. 786 # corresponding .py files have already been deleted.
794 'name': 'remove_stale_pyc_files', 787 'name': 'remove_stale_pyc_files',
795 'pattern': 'src/tools/.*\\.py', 788 'pattern': 'src/tools/.*\\.py',
796 'action': [ 789 'action': [
797 'python', 790 'python',
798 'src/tools/remove_stale_pyc_files.py', 791 'src/tools/remove_stale_pyc_files.py',
799 'src/tools', 792 'src/tools',
800 ], 793 ],
801 }, 794 },
802 ] 795 ]
OLDNEW
« no previous file with comments | « no previous file | tools/gn/bin/rm_binaries.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698