| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 # Make sure you update the two functional.DEPS and webdriver.DEPS too. | 204 # Make sure you update the two functional.DEPS and webdriver.DEPS too. |
| 205 "src/third_party/webdriver/pylib": | 205 "src/third_party/webdriver/pylib": |
| 206 (Var("googlecode_url") % "selenium") + "/trunk/py@18337", | 206 (Var("googlecode_url") % "selenium") + "/trunk/py@18337", |
| 207 | 207 |
| 208 "src/third_party/libvpx": | 208 "src/third_party/libvpx": |
| 209 "/trunk/deps/third_party/libvpx@" + | 209 "/trunk/deps/third_party/libvpx@" + |
| 210 Var("libvpx_revision"), | 210 Var("libvpx_revision"), |
| 211 | 211 |
| 212 "src/third_party/ffmpeg": | 212 "src/third_party/ffmpeg": |
| 213 Var("chromium_git") + | 213 Var("chromium_git") + |
| 214 "/chromium/third_party/ffmpeg.git@9caa384561d53a85b4d86bf6ab7426c1362914cf", | 214 "/chromium/third_party/ffmpeg.git@5c3de8094903dd2162232b8f1be916c46acdd8f5", |
| 215 | 215 |
| 216 "src/third_party/libjingle/source/talk": | 216 "src/third_party/libjingle/source/talk": |
| 217 (Var("googlecode_url") % "webrtc") + "/trunk/talk@" + | 217 (Var("googlecode_url") % "webrtc") + "/trunk/talk@" + |
| 218 Var("webrtc_revision"), | 218 Var("webrtc_revision"), |
| 219 | 219 |
| 220 "src/third_party/usrsctp/usrsctplib": | 220 "src/third_party/usrsctp/usrsctplib": |
| 221 (Var("googlecode_url") % "sctp-refimpl") + | 221 (Var("googlecode_url") % "sctp-refimpl") + |
| 222 "/trunk/KERN/usrsctp/usrsctplib@8875", | 222 "/trunk/KERN/usrsctp/usrsctplib@8875", |
| 223 | 223 |
| 224 "src/third_party/libsrtp": | 224 "src/third_party/libsrtp": |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 800 "src/third_party/apache-win32", | 800 "src/third_party/apache-win32", |
| 801 ], | 801 ], |
| 802 }, | 802 }, |
| 803 { | 803 { |
| 804 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 804 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 805 "name": "gyp", | 805 "name": "gyp", |
| 806 "pattern": ".", | 806 "pattern": ".", |
| 807 "action": ["python", "src/build/gyp_chromium"], | 807 "action": ["python", "src/build/gyp_chromium"], |
| 808 }, | 808 }, |
| 809 ] | 809 ] |
| OLD | NEW |