OLD | NEW |
---|---|
1 vars = { | 1 vars = { |
2 # Use this googlecode_url variable only if there is an internal mirror for it. | 2 # Use this googlecode_url variable only if there is an internal mirror for it. |
3 # If you do not know, use the full path while defining your new deps entry. | 3 # If you do not know, use the full path while defining your new deps entry. |
4 "googlecode_url": "http://%s.googlecode.com/svn", | 4 "googlecode_url": "http://%s.googlecode.com/svn", |
5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
7 "webkit_revision": "94417", | 7 "webkit_revision": "94417", |
8 "chromium_git": "http://git.chromium.org/git", | 8 "chromium_git": "http://git.chromium.org/git", |
9 "swig_revision": "69281", | 9 "swig_revision": "69281", |
10 "nacl_revision": "6605", | 10 "nacl_revision": "6605", |
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
418 "--file-hash", "linux_x86_newlib", | 418 "--file-hash", "linux_x86_newlib", |
419 Var("nacl_toolchain_linux_x86_newlib_hash"), | 419 Var("nacl_toolchain_linux_x86_newlib_hash"), |
420 ], | 420 ], |
421 }, | 421 }, |
422 { | 422 { |
423 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 423 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
424 "pattern": ".", | 424 "pattern": ".", |
425 "action": ["python", "src/build/gyp_chromium"], | 425 "action": ["python", "src/build/gyp_chromium"], |
426 }, | 426 }, |
427 ] | 427 ] |
428 | |
429 import sys | |
bradn
2011/09/06 23:56:19
Lots of stuff (more than should) processes deps, l
M-A Ruel
2011/09/07 15:39:43
Exact.
| |
430 if sys.platform == "win32": | |
431 hooks.insert(0, | |
432 { | |
433 # This builds and installs a shim for link.exe that allows using "Use | |
434 # Library Dependency Inputs" in VS. | |
435 "pattern": ".", | |
436 "action": [ | |
437 "python", "src/tools/supalink/install_supalink.py" | |
438 ] | |
439 }) | |
OLD | NEW |