| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 Var("chromium_git") + | 84 Var("chromium_git") + |
| 85 "/external/angle.git@af640efbfdbe80909016fc623bb65f010a2e551f", | 85 "/external/angle.git@af640efbfdbe80909016fc623bb65f010a2e551f", |
| 86 | 86 |
| 87 "src/third_party/trace-viewer": | 87 "src/third_party/trace-viewer": |
| 88 (Var("googlecode_url") % "trace-viewer") + "/trunk@1069", | 88 (Var("googlecode_url") % "trace-viewer") + "/trunk@1069", |
| 89 | 89 |
| 90 "src/third_party/WebKit": | 90 "src/third_party/WebKit": |
| 91 Var("webkit_trunk") + "@" + Var("webkit_revision"), | 91 Var("webkit_trunk") + "@" + Var("webkit_revision"), |
| 92 | 92 |
| 93 "src/third_party/icu": | 93 "src/third_party/icu": |
| 94 "/trunk/deps/third_party/icu46@228516", | 94 "/trunk/deps/third_party/icu46@239289", |
| 95 | 95 |
| 96 "src/third_party/libexif/sources": | 96 "src/third_party/libexif/sources": |
| 97 "/trunk/deps/third_party/libexif/sources@146817", | 97 "/trunk/deps/third_party/libexif/sources@146817", |
| 98 | 98 |
| 99 "src/third_party/hunspell": | 99 "src/third_party/hunspell": |
| 100 "/trunk/deps/third_party/hunspell@206172", | 100 "/trunk/deps/third_party/hunspell@206172", |
| 101 | 101 |
| 102 "src/third_party/hunspell_dictionaries": | 102 "src/third_party/hunspell_dictionaries": |
| 103 "/trunk/deps/third_party/hunspell_dictionaries@193701", | 103 "/trunk/deps/third_party/hunspell_dictionaries@193701", |
| 104 | 104 |
| (...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 "pattern": ".", | 693 "pattern": ".", |
| 694 "action": ["python", "src/build/gyp_chromium"], | 694 "action": ["python", "src/build/gyp_chromium"], |
| 695 }, | 695 }, |
| 696 { | 696 { |
| 697 # Check for landmines (reasons to clobber the build). | 697 # Check for landmines (reasons to clobber the build). |
| 698 "name": "landmines", | 698 "name": "landmines", |
| 699 "pattern": ".", | 699 "pattern": ".", |
| 700 "action": ["python", "src/build/landmines.py"], | 700 "action": ["python", "src/build/landmines.py"], |
| 701 }, | 701 }, |
| 702 ] | 702 ] |
| OLD | NEW |