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://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 "src/third_party/ffmpeg": | 169 "src/third_party/ffmpeg": |
170 "/trunk/deps/third_party/ffmpeg@" + | 170 "/trunk/deps/third_party/ffmpeg@" + |
171 Var("ffmpeg_revision"), | 171 Var("ffmpeg_revision"), |
172 | 172 |
173 "src/third_party/libjingle/source/talk": | 173 "src/third_party/libjingle/source/talk": |
174 (Var("googlecode_url") % "webrtc") + "/stable/talk@" + | 174 (Var("googlecode_url") % "webrtc") + "/stable/talk@" + |
175 Var("webrtc_revision"), | 175 Var("webrtc_revision"), |
176 | 176 |
177 "src/third_party/usrsctp/usrsctplib": | 177 "src/third_party/usrsctp/usrsctplib": |
178 (Var("googlecode_url") % "sctp-refimpl") + | 178 (Var("googlecode_url") % "sctp-refimpl") + |
179 "/trunk/KERN/usrsctp/usrsctplib@8463", | 179 "/trunk/KERN/usrsctp/usrsctplib@8554", |
180 | 180 |
181 "src/third_party/libsrtp": | 181 "src/third_party/libsrtp": |
182 "/trunk/deps/third_party/libsrtp@214783", | 182 "/trunk/deps/third_party/libsrtp@214783", |
183 | 183 |
184 "src/third_party/speex": | 184 "src/third_party/speex": |
185 "/trunk/deps/third_party/speex@198168", | 185 "/trunk/deps/third_party/speex@198168", |
186 | 186 |
187 "src/third_party/yasm/source/patched-yasm": | 187 "src/third_party/yasm/source/patched-yasm": |
188 "/trunk/deps/third_party/yasm/patched-yasm@167605", | 188 "/trunk/deps/third_party/yasm/patched-yasm@167605", |
189 | 189 |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 "pattern": ".", | 618 "pattern": ".", |
619 "action": ["python", "src/build/gyp_chromium"], | 619 "action": ["python", "src/build/gyp_chromium"], |
620 }, | 620 }, |
621 { | 621 { |
622 # Check for landmines (reasons to clobber the build). | 622 # Check for landmines (reasons to clobber the build). |
623 "name": "landmines", | 623 "name": "landmines", |
624 "pattern": ".", | 624 "pattern": ".", |
625 "action": ["python", "src/build/landmines.py"], | 625 "action": ["python", "src/build/landmines.py"], |
626 }, | 626 }, |
627 ] | 627 ] |
OLD | NEW |