| 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 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 'pattern': '.', | 591 'pattern': '.', |
| 592 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', | 592 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 593 '--running-as-hook'], | 593 '--running-as-hook'], |
| 594 }, | 594 }, |
| 595 { | 595 { |
| 596 # Update the Windows toolchain if necessary. | 596 # Update the Windows toolchain if necessary. |
| 597 'name': 'win_toolchain', | 597 'name': 'win_toolchain', |
| 598 'pattern': '.', | 598 'pattern': '.', |
| 599 'action': ['python', 'src/build/vs_toolchain.py', 'update'], | 599 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
| 600 }, | 600 }, |
| 601 { |
| 602 # Update the Mac toolchain if necessary. |
| 603 'name': 'mac_toolchain', |
| 604 'pattern': '.', |
| 605 'action': ['python', 'src/build/mac_toolchain.py'], |
| 606 }, |
| 601 # Pull binutils for linux, enabled debug fission for faster linking / | 607 # Pull binutils for linux, enabled debug fission for faster linking / |
| 602 # debugging when used with clang on Ubuntu Precise. | 608 # debugging when used with clang on Ubuntu Precise. |
| 603 # https://code.google.com/p/chromium/issues/detail?id=352046 | 609 # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 604 { | 610 { |
| 605 'name': 'binutils', | 611 'name': 'binutils', |
| 606 'pattern': 'src/third_party/binutils', | 612 'pattern': 'src/third_party/binutils', |
| 607 'action': [ | 613 'action': [ |
| 608 'python', | 614 'python', |
| 609 'src/third_party/binutils/download.py', | 615 'src/third_party/binutils/download.py', |
| 610 ], | 616 ], |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 841 'src/tools', | 847 'src/tools', |
| 842 ], | 848 ], |
| 843 }, | 849 }, |
| 844 { | 850 { |
| 845 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 851 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 846 'name': 'gyp', | 852 'name': 'gyp', |
| 847 'pattern': '.', | 853 'pattern': '.', |
| 848 'action': ['python', 'src/build/gyp_chromium'], | 854 'action': ['python', 'src/build/gyp_chromium'], |
| 849 }, | 855 }, |
| 850 ] | 856 ] |
| OLD | NEW |