| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "src/third_party/leveldatabase/src": | 110 "src/third_party/leveldatabase/src": |
| 111 (Var("googlecode_url") % "leveldb") + "/trunk@72", | 111 (Var("googlecode_url") % "leveldb") + "/trunk@72", |
| 112 | 112 |
| 113 "src/third_party/snappy/src": | 113 "src/third_party/snappy/src": |
| 114 (Var("googlecode_url") % "snappy") + "/trunk@63", | 114 (Var("googlecode_url") % "snappy") + "/trunk@63", |
| 115 | 115 |
| 116 "src/tools/grit": | 116 "src/tools/grit": |
| 117 (Var("googlecode_url") % "grit-i18n") + "/trunk@115", | 117 (Var("googlecode_url") % "grit-i18n") + "/trunk@115", |
| 118 | 118 |
| 119 "src/tools/gyp": | 119 "src/tools/gyp": |
| 120 (Var("googlecode_url") % "gyp") + "/trunk@1611", | 120 (Var("googlecode_url") % "gyp") + "/trunk@1617", |
| 121 | 121 |
| 122 "src/tools/swarm_client": | 122 "src/tools/swarm_client": |
| 123 "/trunk/tools/swarm_client@" + Var("swarm_revision"), | 123 "/trunk/tools/swarm_client@" + Var("swarm_revision"), |
| 124 | 124 |
| 125 "src/v8": | 125 "src/v8": |
| 126 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), | 126 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), |
| 127 | 127 |
| 128 "src/native_client": | 128 "src/native_client": |
| 129 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), | 129 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), |
| 130 | 130 |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 694 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 695 "pattern": ".", | 695 "pattern": ".", |
| 696 "action": ["python", "src/build/gyp_chromium"], | 696 "action": ["python", "src/build/gyp_chromium"], |
| 697 }, | 697 }, |
| 698 { | 698 { |
| 699 # Check for landmines (reasons to clobber the build). | 699 # Check for landmines (reasons to clobber the build). |
| 700 "pattern": ".", | 700 "pattern": ".", |
| 701 "action": ["python", "src/build/landmines.py"], | 701 "action": ["python", "src/build/landmines.py"], |
| 702 }, | 702 }, |
| 703 ] | 703 ] |
| OLD | NEW |