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

Side by Side Diff: DEPS

Issue 735163002: Use the new nacl_core_sdk mode for package_version within Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 1 month 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 | « no previous file | build/download_nacl_toolchains.py » ('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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 'src/build/landmines.py', 538 'src/build/landmines.py',
539 ], 539 ],
540 }, 540 },
541 { 541 {
542 # This downloads binaries for Native Client's newlib toolchain. 542 # This downloads binaries for Native Client's newlib toolchain.
543 # Done in lieu of building the toolchain from scratch as it can take 543 # Done in lieu of building the toolchain from scratch as it can take
544 # anywhere from 30 minutes to 4 hours depending on platform to build. 544 # anywhere from 30 minutes to 4 hours depending on platform to build.
545 'name': 'nacltools', 545 'name': 'nacltools',
546 'pattern': '.', 546 'pattern': '.',
547 'action': [ 547 'action': [
548 'python', 'src/build/download_nacl_toolchains.py', 548 'python',
549 '--exclude', 'arm_trusted', 549 'src/build/download_nacl_toolchains.py',
550 ], 550 ],
551 }, 551 },
552 { 552 {
553 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. 553 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed.
554 # This sysroot updates at about the same rate that the chrome build deps 554 # This sysroot updates at about the same rate that the chrome build deps
555 # change. This script is a no-op except for linux users who are doing 555 # change. This script is a no-op except for linux users who are doing
556 # official chrome builds. 556 # official chrome builds.
557 'name': 'sysroot', 557 'name': 'sysroot',
558 'pattern': '.', 558 'pattern': '.',
559 'action': [ 559 'action': [
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 # corresponding .py files have already been deleted. 779 # corresponding .py files have already been deleted.
780 'name': 'remove_stale_pyc_files', 780 'name': 'remove_stale_pyc_files',
781 'pattern': 'src/tools/.*\\.py', 781 'pattern': 'src/tools/.*\\.py',
782 'action': [ 782 'action': [
783 'python', 783 'python',
784 'src/tools/remove_stale_pyc_files.py', 784 'src/tools/remove_stale_pyc_files.py',
785 'src/tools', 785 'src/tools',
786 ], 786 ],
787 }, 787 },
788 ] 788 ]
OLDNEW
« no previous file with comments | « no previous file | build/download_nacl_toolchains.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698