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

Side by Side Diff: DEPS

Issue 1019573003: Instrumented libraries: add a hook to download pre-built binaries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo the default value change Created 5 years, 9 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
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 740 matching lines...) Expand 10 before | Expand all | Expand 10 after
751 # Pull the mojo_shell binary, used for mojo development 751 # Pull the mojo_shell binary, used for mojo development
752 { 752 {
753 'name': 'download_mojo_shell', 753 'name': 'download_mojo_shell',
754 'pattern': '', 754 'pattern': '',
755 'action': [ 'python', 755 'action': [ 'python',
756 'src/third_party/mojo/src/mojo/public/tools/download_shell_binar y.py', 756 'src/third_party/mojo/src/mojo/public/tools/download_shell_binar y.py',
757 '--tools-directory=../../../../../../tools', 757 '--tools-directory=../../../../../../tools',
758 ], 758 ],
759 }, 759 },
760 { 760 {
761 # Pull sanitizer-instrumented third-party libraries if requested via
762 # GYP_DEFINES.
763 'name': 'instrumented_libraries',
764 'pattern': '\\.sha1',
765 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa d_binaries.py'],
766 },
767 {
761 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 768 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
762 'name': 'gyp', 769 'name': 'gyp',
763 'pattern': '.', 770 'pattern': '.',
764 'action': ['python', 'src/build/gyp_chromium'], 771 'action': ['python', 'src/build/gyp_chromium'],
765 }, 772 },
766 { 773 {
767 # Verify committers' ~/.netc, gclient and git are properly configured for 774 # Verify committers' ~/.netc, gclient and git are properly configured for
768 # write access to the git repo. To be removed sometime after Chrome to git 775 # write access to the git repo. To be removed sometime after Chrome to git
769 # migration completes (let's say Sep 1 2014). 776 # migration completes (let's say Sep 1 2014).
770 'name': 'check_git_config', 777 'name': 'check_git_config',
771 'pattern': '.', 778 'pattern': '.',
772 'action': [ 779 'action': [
773 'python', 780 'python',
774 'src/tools/check_git_config.py', 781 'src/tools/check_git_config.py',
775 '--running-as-hook', 782 '--running-as-hook',
776 ], 783 ],
777 }, 784 },
778 { 785 {
779 # Ensure that we don't accidentally reference any .pyc files whose 786 # Ensure that we don't accidentally reference any .pyc files whose
780 # corresponding .py files have already been deleted. 787 # corresponding .py files have already been deleted.
781 'name': 'remove_stale_pyc_files', 788 'name': 'remove_stale_pyc_files',
782 'pattern': 'src/tools/.*\\.py', 789 'pattern': 'src/tools/.*\\.py',
783 'action': [ 790 'action': [
784 'python', 791 'python',
785 'src/tools/remove_stale_pyc_files.py', 792 'src/tools/remove_stale_pyc_files.py',
786 'src/tools', 793 'src/tools',
787 ], 794 ],
788 }, 795 },
789 ] 796 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698