OLD | NEW |
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 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
711 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', | 711 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', |
712 ], | 712 ], |
713 }, | 713 }, |
714 # Pull the Syzygy binaries, used for optimization and instrumentation. | 714 # Pull the Syzygy binaries, used for optimization and instrumentation. |
715 { | 715 { |
716 'name': 'syzygy-binaries', | 716 'name': 'syzygy-binaries', |
717 'pattern': '.', | 717 'pattern': '.', |
718 'action': ['python', | 718 'action': ['python', |
719 'src/build/get_syzygy_binaries.py', | 719 'src/build/get_syzygy_binaries.py', |
720 '--output-dir=src/third_party/syzygy/binaries', | 720 '--output-dir=src/third_party/syzygy/binaries', |
721 '--revision=ef04c12a22ec5847dea89b93920b392d8bd136fd', | 721 '--revision=e869aa03e0f40f74321a70d6d4578f5bbbc29bda', |
722 '--overwrite', | 722 '--overwrite', |
723 ], | 723 ], |
724 }, | 724 }, |
725 { | 725 { |
726 'name': 'kasko', | 726 'name': 'kasko', |
727 'pattern': '.', | 727 'pattern': '.', |
728 'action': ['python', | 728 'action': ['python', |
729 'src/build/get_syzygy_binaries.py', | 729 'src/build/get_syzygy_binaries.py', |
730 '--output-dir=src/third_party/kasko', | 730 '--output-dir=src/third_party/kasko', |
731 '--revision=3278b959bdf6c9aa4b326a38e8b953e566c1ec58', | 731 '--revision=3278b959bdf6c9aa4b326a38e8b953e566c1ec58', |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
780 # corresponding .py files have already been deleted. | 780 # corresponding .py files have already been deleted. |
781 'name': 'remove_stale_pyc_files', | 781 'name': 'remove_stale_pyc_files', |
782 'pattern': 'src/tools/.*\\.py', | 782 'pattern': 'src/tools/.*\\.py', |
783 'action': [ | 783 'action': [ |
784 'python', | 784 'python', |
785 'src/tools/remove_stale_pyc_files.py', | 785 'src/tools/remove_stale_pyc_files.py', |
786 'src/tools', | 786 'src/tools', |
787 ], | 787 ], |
788 }, | 788 }, |
789 ] | 789 ] |
OLD | NEW |