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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 "/trunk/deps/third_party/xdg-utils@149334", | 492 "/trunk/deps/third_party/xdg-utils@149334", |
493 | 493 |
494 "src/third_party/swig/linux": | 494 "src/third_party/swig/linux": |
495 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), | 495 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), |
496 | 496 |
497 "src/third_party/lss": | 497 "src/third_party/lss": |
498 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + | 498 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + |
499 Var("lss_revision")), | 499 Var("lss_revision")), |
500 | 500 |
501 "src/third_party/openssl": | 501 "src/third_party/openssl": |
502 "/trunk/deps/third_party/openssl@130472", | 502 "/trunk/deps/third_party/openssl@151471", |
503 | 503 |
504 "src/third_party/WebKit/Tools/gdb": | 504 "src/third_party/WebKit/Tools/gdb": |
505 Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"), | 505 Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"), |
506 | 506 |
507 "src/third_party/gold": | 507 "src/third_party/gold": |
508 "/trunk/deps/third_party/gold@149858", | 508 "/trunk/deps/third_party/gold@149858", |
509 | 509 |
510 "src/third_party/libmtp": | 510 "src/third_party/libmtp": |
511 "/trunk/deps/third_party/libmtp@149713", | 511 "/trunk/deps/third_party/libmtp@149713", |
512 | 512 |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
594 "pattern": ".", | 594 "pattern": ".", |
595 "action": ["python", "src/build/util/lastchange.py", | 595 "action": ["python", "src/build/util/lastchange.py", |
596 "-o", "src/build/util/LASTCHANGE"], | 596 "-o", "src/build/util/LASTCHANGE"], |
597 }, | 597 }, |
598 { | 598 { |
599 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 599 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
600 "pattern": ".", | 600 "pattern": ".", |
601 "action": ["python", "src/build/gyp_chromium"], | 601 "action": ["python", "src/build/gyp_chromium"], |
602 }, | 602 }, |
603 ] | 603 ] |
OLD | NEW |