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 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
600 'pattern': '.', | 600 'pattern': '.', |
601 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', | 601 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
602 '--running-as-hook'], | 602 '--running-as-hook'], |
603 }, | 603 }, |
604 { | 604 { |
605 # Update the Windows toolchain if necessary. | 605 # Update the Windows toolchain if necessary. |
606 'name': 'win_toolchain', | 606 'name': 'win_toolchain', |
607 'pattern': '.', | 607 'pattern': '.', |
608 'action': ['python', 'src/build/vs_toolchain.py', 'update'], | 608 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
609 }, | 609 }, |
| 610 { |
| 611 # Update the Mac toolchain if necessary. |
| 612 'name': 'mac_toolchain', |
| 613 'pattern': '.', |
| 614 'action': ['python', 'src/build/mac_toolchain.py'], |
| 615 }, |
610 # Pull binutils for linux, enabled debug fission for faster linking / | 616 # Pull binutils for linux, enabled debug fission for faster linking / |
611 # debugging when used with clang on Ubuntu Precise. | 617 # debugging when used with clang on Ubuntu Precise. |
612 # https://code.google.com/p/chromium/issues/detail?id=352046 | 618 # https://code.google.com/p/chromium/issues/detail?id=352046 |
613 { | 619 { |
614 'name': 'binutils', | 620 'name': 'binutils', |
615 'pattern': 'src/third_party/binutils', | 621 'pattern': 'src/third_party/binutils', |
616 'action': [ | 622 'action': [ |
617 'python', | 623 'python', |
618 'src/third_party/binutils/download.py', | 624 'src/third_party/binutils/download.py', |
619 ], | 625 ], |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 'pattern': '\\.sha1', | 841 'pattern': '\\.sha1', |
836 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 842 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
837 }, | 843 }, |
838 { | 844 { |
839 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 845 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
840 'name': 'gyp', | 846 'name': 'gyp', |
841 'pattern': '.', | 847 'pattern': '.', |
842 'action': ['python', 'src/build/gyp_chromium'], | 848 'action': ['python', 'src/build/gyp_chromium'], |
843 }, | 849 }, |
844 ] | 850 ] |
OLD | NEW |