| 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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 ] |
| OLD | NEW |