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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" + | 361 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" + |
362 Var("nacl_tools_revision")), | 362 Var("nacl_tools_revision")), |
363 | 363 |
364 # Dependencies used by libjpeg-turbo | 364 # Dependencies used by libjpeg-turbo |
365 "src/third_party/yasm/binaries": | 365 "src/third_party/yasm/binaries": |
366 "/trunk/deps/third_party/yasm/binaries@74228", | 366 "/trunk/deps/third_party/yasm/binaries@74228", |
367 | 367 |
368 # Binary level profile guided optimizations. This points to the | 368 # Binary level profile guided optimizations. This points to the |
369 # latest release binaries for the toolchain. | 369 # latest release binaries for the toolchain. |
370 "src/third_party/syzygy/binaries": | 370 "src/third_party/syzygy/binaries": |
371 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@1027", | 371 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@991", |
372 | 372 |
373 # Binaries for nacl sdk. | 373 # Binaries for nacl sdk. |
374 "src/third_party/nacl_sdk_binaries": | 374 "src/third_party/nacl_sdk_binaries": |
375 "/trunk/deps/third_party/nacl_sdk_binaries@111576", | 375 "/trunk/deps/third_party/nacl_sdk_binaries@111576", |
376 }, | 376 }, |
377 "ios": { | 377 "ios": { |
378 "src/third_party/GTM": | 378 "src/third_party/GTM": |
379 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + | 379 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + |
380 Var("gtm_revision"), | 380 Var("gtm_revision"), |
381 | 381 |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
591 "pattern": ".", | 591 "pattern": ".", |
592 "action": ["python", "src/build/util/lastchange.py", | 592 "action": ["python", "src/build/util/lastchange.py", |
593 "-o", "src/build/util/LASTCHANGE"], | 593 "-o", "src/build/util/LASTCHANGE"], |
594 }, | 594 }, |
595 { | 595 { |
596 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 596 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
597 "pattern": ".", | 597 "pattern": ".", |
598 "action": ["python", "src/build/gyp_chromium"], | 598 "action": ["python", "src/build/gyp_chromium"], |
599 }, | 599 }, |
600 ] | 600 ] |
OLD | NEW |