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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 }, | 546 }, |
547 { | 547 { |
548 # This downloads binaries for Native Client's newlib toolchain. | 548 # This downloads binaries for Native Client's newlib toolchain. |
549 # Done in lieu of building the toolchain from scratch as it can take | 549 # Done in lieu of building the toolchain from scratch as it can take |
550 # anywhere from 30 minutes to 4 hours depending on platform to build. | 550 # anywhere from 30 minutes to 4 hours depending on platform to build. |
551 'name': 'nacltools', | 551 'name': 'nacltools', |
552 'pattern': '.', | 552 'pattern': '.', |
553 'action': [ | 553 'action': [ |
554 'python', | 554 'python', |
555 'src/build/download_nacl_toolchains.py', | 555 'src/build/download_nacl_toolchains.py', |
| 556 '--mode', 'nacl_core_sdk', |
| 557 'sync', |
556 ], | 558 ], |
557 }, | 559 }, |
558 { | 560 { |
559 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. | 561 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. |
560 # This sysroot updates at about the same rate that the chrome build deps | 562 # This sysroot updates at about the same rate that the chrome build deps |
561 # change. This script is a no-op except for linux users who are doing | 563 # change. This script is a no-op except for linux users who are doing |
562 # official chrome builds. | 564 # official chrome builds. |
563 'name': 'sysroot', | 565 'name': 'sysroot', |
564 'pattern': '.', | 566 'pattern': '.', |
565 'action': [ | 567 'action': [ |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
785 # corresponding .py files have already been deleted. | 787 # corresponding .py files have already been deleted. |
786 'name': 'remove_stale_pyc_files', | 788 'name': 'remove_stale_pyc_files', |
787 'pattern': 'src/tools/.*\\.py', | 789 'pattern': 'src/tools/.*\\.py', |
788 'action': [ | 790 'action': [ |
789 'python', | 791 'python', |
790 'src/tools/remove_stale_pyc_files.py', | 792 'src/tools/remove_stale_pyc_files.py', |
791 'src/tools', | 793 'src/tools', |
792 ], | 794 ], |
793 }, | 795 }, |
794 ] | 796 ] |
OLD | NEW |