| 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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 "--platform=win32", | 626 "--platform=win32", |
| 627 "--directory", | 627 "--directory", |
| 628 "--bucket", "chromium-gn", | 628 "--bucket", "chromium-gn", |
| 629 "src/tools/gn/bin/win", | 629 "src/tools/gn/bin/win", |
| 630 ], | 630 ], |
| 631 }, | 631 }, |
| 632 { | 632 { |
| 633 "name": "gn_linux", | 633 "name": "gn_linux", |
| 634 "pattern": "\\.sha1$", | 634 "pattern": "\\.sha1$", |
| 635 "action": [ "download_from_google_storage", | 635 "action": [ "download_from_google_storage", |
| 636 "--platform=\"linux*\"", | 636 "--platform=linux*", |
| 637 "--directory", | 637 "--directory", |
| 638 "--bucket", "chromium-gn", | 638 "--bucket", "chromium-gn", |
| 639 "src/tools/gn/bin/linux", | 639 "src/tools/gn/bin/linux", |
| 640 ], | 640 ], |
| 641 }, | 641 }, |
| 642 { | 642 { |
| 643 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 643 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 644 "name": "gyp", | 644 "name": "gyp", |
| 645 "pattern": ".", | 645 "pattern": ".", |
| 646 "action": ["python", "src/build/gyp_chromium"], | 646 "action": ["python", "src/build/gyp_chromium"], |
| 647 }, | 647 }, |
| 648 { | 648 { |
| 649 # Check for landmines (reasons to clobber the build). | 649 # Check for landmines (reasons to clobber the build). |
| 650 "name": "landmines", | 650 "name": "landmines", |
| 651 "pattern": ".", | 651 "pattern": ".", |
| 652 "action": ["python", "src/build/landmines.py"], | 652 "action": ["python", "src/build/landmines.py"], |
| 653 }, | 653 }, |
| 654 ] | 654 ] |
| OLD | NEW |