| 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 -w <gclientdir> | 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> |
| 8 # where <gcliendir> is the absolute path to the directory containing the | 8 # where <gcliendir> is the absolute path to the directory containing the |
| 9 # .gclient file (the parent of "src"). | 9 # .gclient file (the parent of "src"). |
| 10 # | 10 # |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + | 282 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + |
| 283 Var("libphonenumber_revision"), | 283 Var("libphonenumber_revision"), |
| 284 | 284 |
| 285 "src/tools/deps2git": | 285 "src/tools/deps2git": |
| 286 "/trunk/tools/deps2git@270777", | 286 "/trunk/tools/deps2git@270777", |
| 287 | 287 |
| 288 "src/third_party/clang_format/script": | 288 "src/third_party/clang_format/script": |
| 289 Var("llvm_url") + "/cfe/trunk/tools/clang-format@206068", | 289 Var("llvm_url") + "/cfe/trunk/tools/clang-format@206068", |
| 290 | 290 |
| 291 "src/third_party/webpagereplay": | 291 "src/third_party/webpagereplay": |
| 292 (Var("googlecode_url") % "web-page-replay") + "/trunk@544", | 292 Var("chromium_git") + "/external/web-page-replay.git@" + |
| 293 "4edb10429743bf53ef58ec9440e8034ae5f93ff5", |
| 293 | 294 |
| 294 "src/third_party/pywebsocket/src": | 295 "src/third_party/pywebsocket/src": |
| 295 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@790", | 296 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@790", |
| 296 | 297 |
| 297 "src/third_party/opus/src": | 298 "src/third_party/opus/src": |
| 298 "/trunk/deps/third_party/opus@256783", | 299 "/trunk/deps/third_party/opus@256783", |
| 299 | 300 |
| 300 "src/media/cdm/ppapi/api": | 301 "src/media/cdm/ppapi/api": |
| 301 "/trunk/deps/cdm@262570", | 302 "/trunk/deps/cdm@262570", |
| 302 | 303 |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 762 "-s", "src/build/linux/bin/eu-strip.sha1", | 763 "-s", "src/build/linux/bin/eu-strip.sha1", |
| 763 ], | 764 ], |
| 764 }, | 765 }, |
| 765 { | 766 { |
| 766 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 767 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 767 "name": "gyp", | 768 "name": "gyp", |
| 768 "pattern": ".", | 769 "pattern": ".", |
| 769 "action": ["python", "src/build/gyp_chromium"], | 770 "action": ["python", "src/build/gyp_chromium"], |
| 770 }, | 771 }, |
| 771 ] | 772 ] |
| OLD | NEW |