| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 "src/third_party/skia/src": | 141 "src/third_party/skia/src": |
| 142 (Var("googlecode_url") % "skia") + "/trunk/src@" + Var("skia_revision"), | 142 (Var("googlecode_url") % "skia") + "/trunk/src@" + Var("skia_revision"), |
| 143 | 143 |
| 144 "src/third_party/skia/gyp": | 144 "src/third_party/skia/gyp": |
| 145 (Var("googlecode_url") % "skia") + "/trunk/gyp@" + Var("skia_revision"), | 145 (Var("googlecode_url") % "skia") + "/trunk/gyp@" + Var("skia_revision"), |
| 146 | 146 |
| 147 "src/third_party/skia/include": | 147 "src/third_party/skia/include": |
| 148 (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"), | 148 (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"), |
| 149 | 149 |
| 150 "src/third_party/ots": | 150 "src/third_party/ots": |
| 151 (Var("googlecode_url") % "ots") + "/trunk@103", | 151 (Var("googlecode_url") % "ots") + "/trunk@106", |
| 152 | 152 |
| 153 "src/tools/page_cycler/acid3": | 153 "src/tools/page_cycler/acid3": |
| 154 "/trunk/deps/page_cycler/acid3@171600", | 154 "/trunk/deps/page_cycler/acid3@171600", |
| 155 | 155 |
| 156 "src/chrome/test/data/perf/canvas_bench": | 156 "src/chrome/test/data/perf/canvas_bench": |
| 157 "/trunk/deps/canvas_bench@122605", | 157 "/trunk/deps/canvas_bench@122605", |
| 158 | 158 |
| 159 "src/chrome/test/data/perf/frame_rate/content": | 159 "src/chrome/test/data/perf/frame_rate/content": |
| 160 "/trunk/deps/frame_rate/content@93671", | 160 "/trunk/deps/frame_rate/content@93671", |
| 161 | 161 |
| (...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 "pattern": ".", | 676 "pattern": ".", |
| 677 "action": ["python", "src/build/gyp_chromium"], | 677 "action": ["python", "src/build/gyp_chromium"], |
| 678 }, | 678 }, |
| 679 { | 679 { |
| 680 # Check for landmines (reasons to clobber the build). | 680 # Check for landmines (reasons to clobber the build). |
| 681 "name": "landmines", | 681 "name": "landmines", |
| 682 "pattern": ".", | 682 "pattern": ".", |
| 683 "action": ["python", "src/build/landmines.py"], | 683 "action": ["python", "src/build/landmines.py"], |
| 684 }, | 684 }, |
| 685 ] | 685 ] |
| OLD | NEW |