| 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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 "+testing", | 559 "+testing", |
| 560 "+third_party/icu/source/common/unicode", | 560 "+third_party/icu/source/common/unicode", |
| 561 "+third_party/icu/source/i18n/unicode", | 561 "+third_party/icu/source/i18n/unicode", |
| 562 "+url", | 562 "+url", |
| 563 ] | 563 ] |
| 564 | 564 |
| 565 | 565 |
| 566 # checkdeps.py shouldn't check include paths for files in these dirs: | 566 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 567 skip_child_includes = [ | 567 skip_child_includes = [ |
| 568 "breakpad", | 568 "breakpad", |
| 569 "chrome_frame", | |
| 570 "delegate_execute", | 569 "delegate_execute", |
| 571 "metro_driver", | 570 "metro_driver", |
| 572 "native_client_sdk", | 571 "native_client_sdk", |
| 573 "o3d", | 572 "o3d", |
| 574 "pdf", | 573 "pdf", |
| 575 "sdch", | 574 "sdch", |
| 576 "skia", | 575 "skia", |
| 577 "testing", | 576 "testing", |
| 578 "third_party", | 577 "third_party", |
| 579 "v8", | 578 "v8", |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 "pattern": ".", | 742 "pattern": ".", |
| 744 "action": ["python", "src/build/gyp_chromium"], | 743 "action": ["python", "src/build/gyp_chromium"], |
| 745 }, | 744 }, |
| 746 { | 745 { |
| 747 # Check for landmines (reasons to clobber the build). | 746 # Check for landmines (reasons to clobber the build). |
| 748 "name": "landmines", | 747 "name": "landmines", |
| 749 "pattern": ".", | 748 "pattern": ".", |
| 750 "action": ["python", "src/build/landmines.py"], | 749 "action": ["python", "src/build/landmines.py"], |
| 751 }, | 750 }, |
| 752 ] | 751 ] |
| OLD | NEW |