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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
206 # Make sure you update the two functional.DEPS and webdriver.DEPS too. | 206 # Make sure you update the two functional.DEPS and webdriver.DEPS too. |
207 "src/third_party/webdriver/pylib": | 207 "src/third_party/webdriver/pylib": |
208 (Var("googlecode_url") % "selenium") + "/trunk/py@18337", | 208 (Var("googlecode_url") % "selenium") + "/trunk/py@18337", |
209 | 209 |
210 "src/third_party/libvpx": | 210 "src/third_party/libvpx": |
211 "/trunk/deps/third_party/libvpx@" + | 211 "/trunk/deps/third_party/libvpx@" + |
212 Var("libvpx_revision"), | 212 Var("libvpx_revision"), |
213 | 213 |
214 "src/third_party/ffmpeg": | 214 "src/third_party/ffmpeg": |
215 Var("chromium_git") + | 215 Var("chromium_git") + |
216 "/chromium/third_party/ffmpeg.git@d3a060bd1d6a4f43e9bc7d07f193b0513df4f244", | 216 "/chromium/third_party/ffmpeg.git@729388d1521c3ac755ca93daadb4a7b44e047e7c", |
wolenetz
2014/05/20 22:37:10
In http://git.chromium.org/gitweb/?p=chromium/thir
DaleCurtis
2014/05/20 23:00:45
Because the discussion here indicates that this is
| |
217 | 217 |
218 "src/third_party/libjingle/source/talk": | 218 "src/third_party/libjingle/source/talk": |
219 (Var("googlecode_url") % "webrtc") + "/trunk/talk@" + | 219 (Var("googlecode_url") % "webrtc") + "/trunk/talk@" + |
220 Var("webrtc_revision"), | 220 Var("webrtc_revision"), |
221 | 221 |
222 "src/third_party/usrsctp/usrsctplib": | 222 "src/third_party/usrsctp/usrsctplib": |
223 (Var("googlecode_url") % "sctp-refimpl") + | 223 (Var("googlecode_url") % "sctp-refimpl") + |
224 "/trunk/KERN/usrsctp/usrsctplib@8838", | 224 "/trunk/KERN/usrsctp/usrsctplib@8838", |
225 | 225 |
226 "src/third_party/libsrtp": | 226 "src/third_party/libsrtp": |
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
767 "-s", "src/build/linux/bin/eu-strip.sha1", | 767 "-s", "src/build/linux/bin/eu-strip.sha1", |
768 ], | 768 ], |
769 }, | 769 }, |
770 { | 770 { |
771 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 771 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
772 "name": "gyp", | 772 "name": "gyp", |
773 "pattern": ".", | 773 "pattern": ".", |
774 "action": ["python", "src/build/gyp_chromium"], | 774 "action": ["python", "src/build/gyp_chromium"], |
775 }, | 775 }, |
776 ] | 776 ] |
OLD | NEW |