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://svn.webkit.org/repository/webkit/trunk", | 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" + | 389 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" + |
390 Var("nacl_tools_revision")), | 390 Var("nacl_tools_revision")), |
391 | 391 |
392 # Dependencies used by libjpeg-turbo | 392 # Dependencies used by libjpeg-turbo |
393 "src/third_party/yasm/binaries": | 393 "src/third_party/yasm/binaries": |
394 "/trunk/deps/third_party/yasm/binaries@74228", | 394 "/trunk/deps/third_party/yasm/binaries@74228", |
395 | 395 |
396 # Binary level profile guided optimizations. This points to the | 396 # Binary level profile guided optimizations. This points to the |
397 # latest release binaries for the toolchain. | 397 # latest release binaries for the toolchain. |
398 "src/third_party/syzygy/binaries": | 398 "src/third_party/syzygy/binaries": |
399 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@991", | 399 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@1027", |
400 | 400 |
401 # Binaries for nacl sdk. | 401 # Binaries for nacl sdk. |
402 "src/third_party/nacl_sdk_binaries": | 402 "src/third_party/nacl_sdk_binaries": |
403 "/trunk/deps/third_party/nacl_sdk_binaries@111576", | 403 "/trunk/deps/third_party/nacl_sdk_binaries@111576", |
404 }, | 404 }, |
405 "ios": { | 405 "ios": { |
406 "src/third_party/GTM": | 406 "src/third_party/GTM": |
407 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + | 407 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + |
408 Var("gtm_revision"), | 408 Var("gtm_revision"), |
409 | 409 |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 "pattern": ".", | 640 "pattern": ".", |
641 "action": ["python", "src/build/util/lastchange.py", | 641 "action": ["python", "src/build/util/lastchange.py", |
642 "-o", "src/build/util/LASTCHANGE"], | 642 "-o", "src/build/util/LASTCHANGE"], |
643 }, | 643 }, |
644 { | 644 { |
645 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 645 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
646 "pattern": ".", | 646 "pattern": ".", |
647 "action": ["python", "src/build/gyp_chromium"], | 647 "action": ["python", "src/build/gyp_chromium"], |
648 }, | 648 }, |
649 ] | 649 ] |
OLD | NEW |