| 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@75", | 98 (Var("googlecode_url") % "leveldb") + "/trunk@75", |
| 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@127", | 104 (Var("googlecode_url") % "grit-i18n") + "/trunk@127", |
| 105 | 105 |
| 106 "src/tools/gyp": | 106 "src/tools/gyp": |
| 107 (Var("googlecode_url") % "gyp") + "/trunk@1651", | 107 (Var("googlecode_url") % "gyp") + "/trunk@1652", |
| 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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 610 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 611 "pattern": ".", | 611 "pattern": ".", |
| 612 "action": ["python", "src/build/gyp_chromium"], | 612 "action": ["python", "src/build/gyp_chromium"], |
| 613 }, | 613 }, |
| 614 { | 614 { |
| 615 # Check for landmines (reasons to clobber the build). | 615 # Check for landmines (reasons to clobber the build). |
| 616 "pattern": ".", | 616 "pattern": ".", |
| 617 "action": ["python", "src/build/landmines.py"], | 617 "action": ["python", "src/build/landmines.py"], |
| 618 }, | 618 }, |
| 619 ] | 619 ] |
| OLD | NEW |