| 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 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 778 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', | 778 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', |
| 779 ], | 779 ], |
| 780 }, | 780 }, |
| 781 # Pull the Syzygy binaries, used for optimization and instrumentation. | 781 # Pull the Syzygy binaries, used for optimization and instrumentation. |
| 782 { | 782 { |
| 783 'name': 'syzygy-binaries', | 783 'name': 'syzygy-binaries', |
| 784 'pattern': '.', | 784 'pattern': '.', |
| 785 'action': ['python', | 785 'action': ['python', |
| 786 'src/build/get_syzygy_binaries.py', | 786 'src/build/get_syzygy_binaries.py', |
| 787 '--output-dir=src/third_party/syzygy/binaries', | 787 '--output-dir=src/third_party/syzygy/binaries', |
| 788 '--revision=262f5599d08ac50aba65ea96b9ee03cce5a3acb7', | 788 '--revision=253383e5987fe5dc81b93057c7d173c0620d3ee0', |
| 789 '--overwrite', | 789 '--overwrite', |
| 790 ], | 790 ], |
| 791 }, | 791 }, |
| 792 # TODO(pmonette): Move include files out of binaries folder. | 792 # TODO(pmonette): Move include files out of binaries folder. |
| 793 { | 793 { |
| 794 'name': 'kasko', | 794 'name': 'kasko', |
| 795 'pattern': '.', | 795 'pattern': '.', |
| 796 'action': ['python', | 796 'action': ['python', |
| 797 'src/build/get_syzygy_binaries.py', | 797 'src/build/get_syzygy_binaries.py', |
| 798 '--output-dir=src/third_party/kasko/binaries', | 798 '--output-dir=src/third_party/kasko/binaries', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 'src/build/android/download_doclava.py', | 843 'src/build/android/download_doclava.py', |
| 844 ], | 844 ], |
| 845 }, | 845 }, |
| 846 { | 846 { |
| 847 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 847 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 848 'name': 'gyp', | 848 'name': 'gyp', |
| 849 'pattern': '.', | 849 'pattern': '.', |
| 850 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 850 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 851 }, | 851 }, |
| 852 ] | 852 ] |
| OLD | NEW |