Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: DEPS

Issue 1759793003: Scripts to upload and update the mac toolchain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .gitignore ('k') | build/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | build/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698