Chromium Code Reviews| 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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 603 # https://code.google.com/p/chromium/issues/detail?id=352046 | 603 # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 604 { | 604 { |
| 605 'name': 'binutils', | 605 'name': 'binutils', |
| 606 'pattern': 'src/third_party/binutils', | 606 'pattern': 'src/third_party/binutils', |
| 607 'action': [ | 607 'action': [ |
| 608 'python', | 608 'python', |
| 609 'src/third_party/binutils/download.py', | 609 'src/third_party/binutils/download.py', |
| 610 ], | 610 ], |
| 611 }, | 611 }, |
| 612 { | 612 { |
| 613 # Pull mac SDK if requested via GYP_DEFINES. | |
| 614 'name': 'mac_sdk', | |
|
erikchen
2016/03/03 01:45:46
technically, we're pulling a partial toolchain, no
justincohen
2016/03/03 18:58:33
Renamed to mac_toolchain.
| |
| 615 'pattern': '.', | |
| 616 'action': ['sudo', 'python', 'src/third_party/mac_sdk/update.py'], | |
|
erikchen
2016/03/03 01:45:46
Is root really required, or is this for convenienc
justincohen
2016/03/03 18:58:33
Mistake from testing, removed.
| |
| 617 }, | |
| 618 { | |
| 613 # Pull clang if needed or requested via GYP_DEFINES. | 619 # Pull clang if needed or requested via GYP_DEFINES. |
| 614 # Note: On Win, this should run after win_toolchain, as it may use it. | 620 # Note: On Win, this should run after win_toolchain, as it may use it. |
| 615 'name': 'clang', | 621 'name': 'clang', |
| 616 'pattern': '.', | 622 'pattern': '.', |
| 617 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], | 623 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], |
| 618 }, | 624 }, |
| 619 { | 625 { |
| 620 # Update LASTCHANGE. | 626 # Update LASTCHANGE. |
| 621 'name': 'lastchange', | 627 'name': 'lastchange', |
| 622 'pattern': '.', | 628 'pattern': '.', |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 840 'src/tools', | 846 'src/tools', |
| 841 ], | 847 ], |
| 842 }, | 848 }, |
| 843 { | 849 { |
| 844 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 850 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 845 'name': 'gyp', | 851 'name': 'gyp', |
| 846 'pattern': '.', | 852 'pattern': '.', |
| 847 'action': ['python', 'src/build/gyp_chromium'], | 853 'action': ['python', 'src/build/gyp_chromium'], |
| 848 }, | 854 }, |
| 849 ] | 855 ] |
| OLD | NEW |