| 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   { |  | 
| 655     # Update LASTCHANGE. This is also run by export_tarball.py in | 649     # Update LASTCHANGE. This is also run by export_tarball.py in | 
| 656     # src/tools/export_tarball - please keep them in sync. | 650     # src/tools/export_tarball - please keep them in sync. | 
| 657     "name": "lastchange", | 651     "name": "lastchange", | 
| 658     "pattern": ".", | 652     "pattern": ".", | 
| 659     "action": ["python", "src/build/util/lastchange.py", | 653     "action": ["python", "src/build/util/lastchange.py", | 
| 660                "-o", "src/build/util/LASTCHANGE"], | 654                "-o", "src/build/util/LASTCHANGE"], | 
| 661   }, | 655   }, | 
| 662   { | 656   { | 
| 663     # Update LASTCHANGE.blink. This is also run by export_tarball.py in | 657     # Update LASTCHANGE.blink. This is also run by export_tarball.py in | 
| 664     # src/tools/export_tarball - please keep them in sync. | 658     # src/tools/export_tarball - please keep them in sync. | 
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 765     "pattern": ".", | 759     "pattern": ".", | 
| 766     "action": ["python", "src/build/gyp_chromium"], | 760     "action": ["python", "src/build/gyp_chromium"], | 
| 767   }, | 761   }, | 
| 768   { | 762   { | 
| 769     # Check for landmines (reasons to clobber the build). | 763     # Check for landmines (reasons to clobber the build). | 
| 770     "name": "landmines", | 764     "name": "landmines", | 
| 771     "pattern": ".", | 765     "pattern": ".", | 
| 772     "action": ["python", "src/build/landmines.py"], | 766     "action": ["python", "src/build/landmines.py"], | 
| 773   }, | 767   }, | 
| 774 ] | 768 ] | 
| OLD | NEW | 
|---|