| 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://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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "src/third_party/leveldatabase/src": | 97 "src/third_party/leveldatabase/src": |
| 98 (Var("googlecode_url") % "leveldb") + "/trunk@73", | 98 (Var("googlecode_url") % "leveldb") + "/trunk@73", |
| 99 | 99 |
| 100 "src/third_party/snappy/src": | 100 "src/third_party/snappy/src": |
| 101 (Var("googlecode_url") % "snappy") + "/trunk@74", | 101 (Var("googlecode_url") % "snappy") + "/trunk@74", |
| 102 | 102 |
| 103 "src/tools/grit": | 103 "src/tools/grit": |
| 104 (Var("googlecode_url") % "grit-i18n") + "/trunk@121", | 104 (Var("googlecode_url") % "grit-i18n") + "/trunk@121", |
| 105 | 105 |
| 106 "src/tools/gyp": | 106 "src/tools/gyp": |
| 107 (Var("googlecode_url") % "gyp") + "/trunk@1640", | 107 (Var("googlecode_url") % "gyp") + "/trunk@1643", |
| 108 | 108 |
| 109 "src/tools/swarm_client": | 109 "src/tools/swarm_client": |
| 110 "/trunk/tools/swarm_client@" + Var("swarm_revision"), | 110 "/trunk/tools/swarm_client@" + Var("swarm_revision"), |
| 111 | 111 |
| 112 "src/v8": | 112 "src/v8": |
| 113 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), | 113 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), |
| 114 | 114 |
| 115 "src/native_client": | 115 "src/native_client": |
| 116 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), | 116 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), |
| 117 | 117 |
| (...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 673 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 674 "pattern": ".", | 674 "pattern": ".", |
| 675 "action": ["python", "src/build/gyp_chromium"], | 675 "action": ["python", "src/build/gyp_chromium"], |
| 676 }, | 676 }, |
| 677 { | 677 { |
| 678 # Check for landmines (reasons to clobber the build). | 678 # Check for landmines (reasons to clobber the build). |
| 679 "pattern": ".", | 679 "pattern": ".", |
| 680 "action": ["python", "src/build/landmines.py"], | 680 "action": ["python", "src/build/landmines.py"], |
| 681 }, | 681 }, |
| 682 ] | 682 ] |
| OLD | NEW |