| 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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 639   }, | 639   }, | 
| 640   { | 640   { | 
| 641     # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes | 641     # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes | 
| 642     # zero seconds to run. If something changed, it downloads a prebuilt clang, | 642     # zero seconds to run. If something changed, it downloads a prebuilt clang, | 
| 643     # which takes ~20s, but clang speeds up builds by more than 20s. | 643     # which takes ~20s, but clang speeds up builds by more than 20s. | 
| 644     "name": "clang", | 644     "name": "clang", | 
| 645     "pattern": ".", | 645     "pattern": ".", | 
| 646     "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 646     "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 
| 647   }, | 647   }, | 
| 648   { | 648   { | 
|  | 649     # Update the cygwin mount on Windows. | 
|  | 650     "name": "cygwin", | 
|  | 651     "pattern": ".", | 
|  | 652     "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"], | 
|  | 653   }, | 
|  | 654   { | 
| 649     # Update LASTCHANGE. This is also run by export_tarball.py in | 655     # Update LASTCHANGE. This is also run by export_tarball.py in | 
| 650     # src/tools/export_tarball - please keep them in sync. | 656     # src/tools/export_tarball - please keep them in sync. | 
| 651     "name": "lastchange", | 657     "name": "lastchange", | 
| 652     "pattern": ".", | 658     "pattern": ".", | 
| 653     "action": ["python", "src/build/util/lastchange.py", | 659     "action": ["python", "src/build/util/lastchange.py", | 
| 654                "-o", "src/build/util/LASTCHANGE"], | 660                "-o", "src/build/util/LASTCHANGE"], | 
| 655   }, | 661   }, | 
| 656   { | 662   { | 
| 657     # Update LASTCHANGE.blink. This is also run by export_tarball.py in | 663     # Update LASTCHANGE.blink. This is also run by export_tarball.py in | 
| 658     # src/tools/export_tarball - please keep them in sync. | 664     # src/tools/export_tarball - please keep them in sync. | 
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 759     "pattern": ".", | 765     "pattern": ".", | 
| 760     "action": ["python", "src/build/gyp_chromium"], | 766     "action": ["python", "src/build/gyp_chromium"], | 
| 761   }, | 767   }, | 
| 762   { | 768   { | 
| 763     # Check for landmines (reasons to clobber the build). | 769     # Check for landmines (reasons to clobber the build). | 
| 764     "name": "landmines", | 770     "name": "landmines", | 
| 765     "pattern": ".", | 771     "pattern": ".", | 
| 766     "action": ["python", "src/build/landmines.py"], | 772     "action": ["python", "src/build/landmines.py"], | 
| 767   }, | 773   }, | 
| 768 ] | 774 ] | 
| OLD | NEW | 
|---|