| OLD | NEW |
| 1 # This file is automatically processed to create .DEPS.git which is the file | 1 # This file is automatically processed to create .DEPS.git which is the file |
| 2 # that gclient uses under git. | 2 # that gclient uses under git. |
| 3 # | 3 # |
| 4 # See http://code.google.com/p/chromium/wiki/UsingGit | 4 # See http://code.google.com/p/chromium/wiki/UsingGit |
| 5 # | 5 # |
| 6 # To test manually, run: | 6 # To test manually, run: |
| 7 # python tools/deps2git/deps2git.py -o .DEPS.git | 7 # python tools/deps2git/deps2git.py -o .DEPS.git |
| 8 # gclient runhooks | 8 # gclient runhooks |
| 9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by | 9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by |
| 10 # a bot when you modify this one. | 10 # a bot when you modify this one. |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 | 586 |
| 587 hooks = [ | 587 hooks = [ |
| 588 { | 588 { |
| 589 # This downloads binaries for Native Client's newlib toolchain. | 589 # This downloads binaries for Native Client's newlib toolchain. |
| 590 # Done in lieu of building the toolchain from scratch as it can take | 590 # Done in lieu of building the toolchain from scratch as it can take |
| 591 # anywhere from 30 minutes to 4 hours depending on platform to build. | 591 # anywhere from 30 minutes to 4 hours depending on platform to build. |
| 592 "name": "nacltools", | 592 "name": "nacltools", |
| 593 "pattern": ".", | 593 "pattern": ".", |
| 594 "action": [ | 594 "action": [ |
| 595 "python", "src/build/download_nacl_toolchains.py", | 595 "python", "src/build/download_nacl_toolchains.py", |
| 596 "--no-arm-trusted", | 596 "--exclude", "arm_trusted", |
| 597 "--keep", | |
| 598 ], | 597 ], |
| 599 }, | 598 }, |
| 600 { | 599 { |
| 601 # Downloads an ARM sysroot image to src/arm-sysroot. This image updates | 600 # Downloads an ARM sysroot image to src/arm-sysroot. This image updates |
| 602 # at about the same rate that the chrome build deps change. | 601 # at about the same rate that the chrome build deps change. |
| 603 # This script is a no-op except for linux users who have | 602 # This script is a no-op except for linux users who have |
| 604 # target_arch=arm in their GYP_DEFINES. | 603 # target_arch=arm in their GYP_DEFINES. |
| 605 "name": "sysroot", | 604 "name": "sysroot", |
| 606 "pattern": ".", | 605 "pattern": ".", |
| 607 "action": ["python", "src/build/linux/install-arm-sysroot.py", | 606 "action": ["python", "src/build/linux/install-arm-sysroot.py", |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 "-s", "src/build/linux/bin/eu-strip.sha1", | 760 "-s", "src/build/linux/bin/eu-strip.sha1", |
| 762 ], | 761 ], |
| 763 }, | 762 }, |
| 764 { | 763 { |
| 765 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 764 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 766 "name": "gyp", | 765 "name": "gyp", |
| 767 "pattern": ".", | 766 "pattern": ".", |
| 768 "action": ["python", "src/build/gyp_chromium"], | 767 "action": ["python", "src/build/gyp_chromium"], |
| 769 }, | 768 }, |
| 770 ] | 769 ] |
| OLD | NEW |