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