| 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 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 749 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', | 749 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', |
| 750 ], | 750 ], |
| 751 }, | 751 }, |
| 752 # Pull the Syzygy binaries, used for optimization and instrumentation. | 752 # Pull the Syzygy binaries, used for optimization and instrumentation. |
| 753 { | 753 { |
| 754 'name': 'syzygy-binaries', | 754 'name': 'syzygy-binaries', |
| 755 'pattern': '.', | 755 'pattern': '.', |
| 756 'action': ['python', | 756 'action': ['python', |
| 757 'src/build/get_syzygy_binaries.py', | 757 'src/build/get_syzygy_binaries.py', |
| 758 '--output-dir=src/third_party/syzygy/binaries', | 758 '--output-dir=src/third_party/syzygy/binaries', |
| 759 '--revision=24abcb05aa6cc35545111d244378ef37b5d5218c', | 759 '--revision=0645c685e783c6787acb8f6e1dade4f916605fc1', |
| 760 '--overwrite', | 760 '--overwrite', |
| 761 ], | 761 ], |
| 762 }, | 762 }, |
| 763 # TODO(pmonette): Move include files out of binaries folder. | 763 # TODO(pmonette): Move include files out of binaries folder. |
| 764 { | 764 { |
| 765 'name': 'kasko', | 765 'name': 'kasko', |
| 766 'pattern': '.', | 766 'pattern': '.', |
| 767 'action': ['python', | 767 'action': ['python', |
| 768 'src/build/get_syzygy_binaries.py', | 768 'src/build/get_syzygy_binaries.py', |
| 769 '--output-dir=src/third_party/kasko/binaries', | 769 '--output-dir=src/third_party/kasko/binaries', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 'src/tools', | 813 'src/tools', |
| 814 ], | 814 ], |
| 815 }, | 815 }, |
| 816 { | 816 { |
| 817 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 817 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 818 'name': 'gyp', | 818 'name': 'gyp', |
| 819 'pattern': '.', | 819 'pattern': '.', |
| 820 'action': ['python', 'src/build/gyp_chromium'], | 820 'action': ['python', 'src/build/gyp_chromium'], |
| 821 }, | 821 }, |
| 822 ] | 822 ] |
| OLD | NEW |