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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" + | 307 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" + |
308 Var("nacl_tools_revision")), | 308 Var("nacl_tools_revision")), |
309 | 309 |
310 # Dependencies used by libjpeg-turbo | 310 # Dependencies used by libjpeg-turbo |
311 "src/third_party/yasm/binaries": | 311 "src/third_party/yasm/binaries": |
312 "/trunk/deps/third_party/yasm/binaries@154708", | 312 "/trunk/deps/third_party/yasm/binaries@154708", |
313 | 313 |
314 # Binary level profile guided optimizations. This points to the | 314 # Binary level profile guided optimizations. This points to the |
315 # latest release binaries for the toolchain. | 315 # latest release binaries for the toolchain. |
316 "src/third_party/syzygy/binaries": | 316 "src/third_party/syzygy/binaries": |
317 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@1740", | 317 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@1762", |
318 | 318 |
319 # Binaries for nacl sdk. | 319 # Binaries for nacl sdk. |
320 "src/third_party/nacl_sdk_binaries": | 320 "src/third_party/nacl_sdk_binaries": |
321 "/trunk/deps/third_party/nacl_sdk_binaries@111576", | 321 "/trunk/deps/third_party/nacl_sdk_binaries@111576", |
322 }, | 322 }, |
323 "ios": { | 323 "ios": { |
324 "src/third_party/GTM": | 324 "src/third_party/GTM": |
325 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + | 325 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + |
326 Var("gtm_revision"), | 326 Var("gtm_revision"), |
327 | 327 |
(...skipping 291 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 |