OLD | NEW |
1 # When adding a new dependency, please update the top-level .gitignore file | 1 # When adding a new dependency, please update the top-level .gitignore file |
2 # to list the dependency's destination directory. | 2 # to list the dependency's destination directory. |
3 | 3 |
4 vars = { | 4 vars = { |
5 # Use this googlecode_url variable only if there is an internal mirror for it. | 5 # Use this googlecode_url variable only if there is an internal mirror for it. |
6 # If you do not know, use the full path while defining your new deps entry. | 6 # If you do not know, use the full path while defining your new deps entry. |
7 "googlecode_url": "http://%s.googlecode.com/svn", | 7 "googlecode_url": "http://%s.googlecode.com/svn", |
8 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", | 8 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", |
9 "webkit_trunk": "http://src.chromium.org/blink/trunk", | 9 "webkit_trunk": "http://src.chromium.org/blink/trunk", |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 "src/third_party/ffmpeg": | 168 "src/third_party/ffmpeg": |
169 "/trunk/deps/third_party/ffmpeg@" + | 169 "/trunk/deps/third_party/ffmpeg@" + |
170 Var("ffmpeg_revision"), | 170 Var("ffmpeg_revision"), |
171 | 171 |
172 "src/third_party/libjingle/source/talk": | 172 "src/third_party/libjingle/source/talk": |
173 (Var("googlecode_url") % "webrtc") + "/stable/talk@" + | 173 (Var("googlecode_url") % "webrtc") + "/stable/talk@" + |
174 Var("webrtc_revision"), | 174 Var("webrtc_revision"), |
175 | 175 |
176 "src/third_party/usrsctp/usrsctplib": | 176 "src/third_party/usrsctp/usrsctplib": |
177 (Var("googlecode_url") % "sctp-refimpl") + | 177 (Var("googlecode_url") % "sctp-refimpl") + |
178 "/trunk/KERN/usrsctp/usrsctplib@8554", | 178 "/trunk/KERN/usrsctp/usrsctplib@8603", |
179 | 179 |
180 "src/third_party/libsrtp": | 180 "src/third_party/libsrtp": |
181 "/trunk/deps/third_party/libsrtp@214783", | 181 "/trunk/deps/third_party/libsrtp@214783", |
182 | 182 |
183 "src/third_party/speex": | 183 "src/third_party/speex": |
184 "/trunk/deps/third_party/speex@198168", | 184 "/trunk/deps/third_party/speex@198168", |
185 | 185 |
186 "src/third_party/yasm/source/patched-yasm": | 186 "src/third_party/yasm/source/patched-yasm": |
187 "/trunk/deps/third_party/yasm/patched-yasm@167605", | 187 "/trunk/deps/third_party/yasm/patched-yasm@167605", |
188 | 188 |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 "pattern": ".", | 619 "pattern": ".", |
620 "action": ["python", "src/build/gyp_chromium"], | 620 "action": ["python", "src/build/gyp_chromium"], |
621 }, | 621 }, |
622 { | 622 { |
623 # Check for landmines (reasons to clobber the build). | 623 # Check for landmines (reasons to clobber the build). |
624 "name": "landmines", | 624 "name": "landmines", |
625 "pattern": ".", | 625 "pattern": ".", |
626 "action": ["python", "src/build/landmines.py"], | 626 "action": ["python", "src/build/landmines.py"], |
627 }, | 627 }, |
628 ] | 628 ] |
OLD | NEW |