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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
708 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', | 708 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', |
709 ], | 709 ], |
710 }, | 710 }, |
711 # Pull the Syzygy binaries, used for optimization and instrumentation. | 711 # Pull the Syzygy binaries, used for optimization and instrumentation. |
712 { | 712 { |
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=f0332d538f3eb84c2a55a3d0506a4a0b58d1c09e', |
719 '--overwrite', | 719 '--overwrite', |
720 ], | 720 ], |
721 }, | 721 }, |
722 { | 722 { |
723 'name': 'kasko', | 723 'name': 'kasko', |
724 'pattern': '.', | 724 'pattern': '.', |
725 'action': ['python', | 725 'action': ['python', |
726 'src/build/get_syzygy_binaries.py', | 726 'src/build/get_syzygy_binaries.py', |
727 '--output-dir=src/third_party/kasko', | 727 '--output-dir=src/third_party/kasko', |
728 '--revision=f0332d538f3eb84c2a55a3d0506a4a0b58d1c09e', | 728 '--revision=f0332d538f3eb84c2a55a3d0506a4a0b58d1c09e', |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 # corresponding .py files have already been deleted. | 777 # corresponding .py files have already been deleted. |
778 'name': 'remove_stale_pyc_files', | 778 'name': 'remove_stale_pyc_files', |
779 'pattern': 'src/tools/.*\\.py', | 779 'pattern': 'src/tools/.*\\.py', |
780 'action': [ | 780 'action': [ |
781 'python', | 781 'python', |
782 'src/tools/remove_stale_pyc_files.py', | 782 'src/tools/remove_stale_pyc_files.py', |
783 'src/tools', | 783 'src/tools', |
784 ], | 784 ], |
785 }, | 785 }, |
786 ] | 786 ] |
OLD | NEW |