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

Side by Side Diff: DEPS

Issue 866023003: Fetch Kasko crash reporter for use with SyzyASAN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « .gitignore ('k') | build/common.gypi » ('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 used to manage the dependencies of the Chromium src repo. It is 1 # This file is used to manage the dependencies of the Chromium src repo. It is
2 # used by gclient to determine what version of each dependency to check out, and 2 # used by gclient to determine what version of each dependency to check out, and
3 # where. 3 # where.
4 # 4 #
5 # For more information, please refer to the official documentation: 5 # For more information, please refer to the official documentation:
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code
7 # 7 #
8 # When adding a new dependency, please update the top-level .gitignore file 8 # When adding a new dependency, please update the top-level .gitignore file
9 # to list the dependency's destination directory. 9 # to list the dependency's destination directory.
10 # 10 #
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 'name': 'syzygy-binaries', 713 'name': 'syzygy-binaries',
714 'pattern': '.', 714 'pattern': '.',
715 'action': ['python', 715 'action': ['python',
716 'src/build/get_syzygy_binaries.py', 716 'src/build/get_syzygy_binaries.py',
717 '--output-dir=src/third_party/syzygy/binaries', 717 '--output-dir=src/third_party/syzygy/binaries',
718 '--revision=b92d590a9670f92b1223bcc9a334771ce95611cd', 718 '--revision=b92d590a9670f92b1223bcc9a334771ce95611cd',
719 '--overwrite', 719 '--overwrite',
720 ], 720 ],
721 }, 721 },
722 { 722 {
723 'name': 'kasko',
724 'pattern': '.',
725 'action': ['python',
726 'src/build/get_syzygy_binaries.py',
727 '--output-dir=src/third_party/kasko',
728 '--revision=f0332d538f3eb84c2a55a3d0506a4a0b58d1c09e',
729 '--resource=kasko.zip',
730 '--resource=kasko_symbols.zip',
731 '--overwrite',
732 ],
733 },
734 {
723 'name': 'apache_win32', 735 'name': 'apache_win32',
724 'pattern': '\\.sha1', 736 'pattern': '\\.sha1',
725 'action': [ 'download_from_google_storage', 737 'action': [ 'download_from_google_storage',
726 '--no_resume', 738 '--no_resume',
727 '--platform=win32', 739 '--platform=win32',
728 '--directory', 740 '--directory',
729 '--recursive', 741 '--recursive',
730 '--no_auth', 742 '--no_auth',
731 '--num_threads=16', 743 '--num_threads=16',
732 '--bucket', 'chromium-apache-win32', 744 '--bucket', 'chromium-apache-win32',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
765 # corresponding .py files have already been deleted. 777 # corresponding .py files have already been deleted.
766 'name': 'remove_stale_pyc_files', 778 'name': 'remove_stale_pyc_files',
767 'pattern': 'src/tools/.*\\.py', 779 'pattern': 'src/tools/.*\\.py',
768 'action': [ 780 'action': [
769 'python', 781 'python',
770 'src/tools/remove_stale_pyc_files.py', 782 'src/tools/remove_stale_pyc_files.py',
771 'src/tools', 783 'src/tools',
772 ], 784 ],
773 }, 785 },
774 ] 786 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698