| 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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 'pattern': '.', | 609 'pattern': '.', |
| 610 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', | 610 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 611 '--running-as-hook'], | 611 '--running-as-hook'], |
| 612 }, | 612 }, |
| 613 { | 613 { |
| 614 # Update the Windows toolchain if necessary. | 614 # Update the Windows toolchain if necessary. |
| 615 'name': 'win_toolchain', | 615 'name': 'win_toolchain', |
| 616 'pattern': '.', | 616 'pattern': '.', |
| 617 'action': ['python', 'src/build/vs_toolchain.py', 'update'], | 617 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
| 618 }, | 618 }, |
| 619 { |
| 620 # Update the Mac toolchain if necessary. |
| 621 'name': 'mac_toolchain', |
| 622 'pattern': '.', |
| 623 'action': ['python', 'src/build/mac_toolchain.py'], |
| 624 }, |
| 619 # Pull binutils for linux, enabled debug fission for faster linking / | 625 # Pull binutils for linux, enabled debug fission for faster linking / |
| 620 # debugging when used with clang on Ubuntu Precise. | 626 # debugging when used with clang on Ubuntu Precise. |
| 621 # https://code.google.com/p/chromium/issues/detail?id=352046 | 627 # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 622 { | 628 { |
| 623 'name': 'binutils', | 629 'name': 'binutils', |
| 624 'pattern': 'src/third_party/binutils', | 630 'pattern': 'src/third_party/binutils', |
| 625 'action': [ | 631 'action': [ |
| 626 'python', | 632 'python', |
| 627 'src/third_party/binutils/download.py', | 633 'src/third_party/binutils/download.py', |
| 628 ], | 634 ], |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 'pattern': '\\.sha1', | 850 'pattern': '\\.sha1', |
| 845 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 851 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
| 846 }, | 852 }, |
| 847 { | 853 { |
| 848 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 854 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 849 'name': 'gyp', | 855 'name': 'gyp', |
| 850 'pattern': '.', | 856 'pattern': '.', |
| 851 'action': ['python', 'src/build/gyp_chromium'], | 857 'action': ['python', 'src/build/gyp_chromium'], |
| 852 }, | 858 }, |
| 853 ] | 859 ] |
| OLD | NEW |