| 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 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', | 782 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', |
| 783 ], | 783 ], |
| 784 }, | 784 }, |
| 785 # Pull the Syzygy binaries, used for optimization and instrumentation. | 785 # Pull the Syzygy binaries, used for optimization and instrumentation. |
| 786 { | 786 { |
| 787 'name': 'syzygy-binaries', | 787 'name': 'syzygy-binaries', |
| 788 'pattern': '.', | 788 'pattern': '.', |
| 789 'action': ['python', | 789 'action': ['python', |
| 790 'src/build/get_syzygy_binaries.py', | 790 'src/build/get_syzygy_binaries.py', |
| 791 '--output-dir=src/third_party/syzygy/binaries', | 791 '--output-dir=src/third_party/syzygy/binaries', |
| 792 '--revision=83261eadef4d3a6ac2e2b325a39e62c27b283aca', | 792 '--revision=e6784a6b60fa2449a3cabb8ede9c6b98ef902c06', |
| 793 '--overwrite', | 793 '--overwrite', |
| 794 ], | 794 ], |
| 795 }, | 795 }, |
| 796 # TODO(pmonette): Move include files out of binaries folder. | 796 # TODO(pmonette): Move include files out of binaries folder. |
| 797 { | 797 { |
| 798 'name': 'kasko', | 798 'name': 'kasko', |
| 799 'pattern': '.', | 799 'pattern': '.', |
| 800 'action': ['python', | 800 'action': ['python', |
| 801 'src/build/get_syzygy_binaries.py', | 801 'src/build/get_syzygy_binaries.py', |
| 802 '--output-dir=src/third_party/kasko/binaries', | 802 '--output-dir=src/third_party/kasko/binaries', |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 'pattern': '\\.sha1', | 839 'pattern': '\\.sha1', |
| 840 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 840 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
| 841 }, | 841 }, |
| 842 { | 842 { |
| 843 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 843 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 844 'name': 'gyp', | 844 'name': 'gyp', |
| 845 'pattern': '.', | 845 'pattern': '.', |
| 846 'action': ['python', 'src/build/gyp_chromium'], | 846 'action': ['python', 'src/build/gyp_chromium'], |
| 847 }, | 847 }, |
| 848 ] | 848 ] |
| OLD | NEW |