| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 | 282 |
| 283 "src/third_party/jsoncpp/source/include": | 283 "src/third_party/jsoncpp/source/include": |
| 284 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + | 284 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + |
| 285 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"), | 285 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"), |
| 286 | 286 |
| 287 "src/third_party/jsoncpp/source/src/lib_json": | 287 "src/third_party/jsoncpp/source/src/lib_json": |
| 288 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + | 288 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + |
| 289 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), | 289 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), |
| 290 | 290 |
| 291 "src/third_party/libyuv": | 291 "src/third_party/libyuv": |
| 292 (Var("googlecode_url") % "libyuv") + "/trunk@520", | 292 (Var("googlecode_url") % "libyuv") + "/trunk@528", |
| 293 | 293 |
| 294 "src/third_party/smhasher/src": | 294 "src/third_party/smhasher/src": |
| 295 (Var("googlecode_url") % "smhasher") + "/trunk@147", | 295 (Var("googlecode_url") % "smhasher") + "/trunk@147", |
| 296 | 296 |
| 297 "src/third_party/libphonenumber/src/phonenumbers": | 297 "src/third_party/libphonenumber/src/phonenumbers": |
| 298 (Var("googlecode_url") % "libphonenumber") + | 298 (Var("googlecode_url") % "libphonenumber") + |
| 299 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), | 299 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), |
| 300 "src/third_party/libphonenumber/src/test": | 300 "src/third_party/libphonenumber/src/test": |
| 301 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + | 301 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + |
| 302 Var("libphonenumber_revision"), | 302 Var("libphonenumber_revision"), |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 664 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 665 "pattern": ".", | 665 "pattern": ".", |
| 666 "action": ["python", "src/build/gyp_chromium"], | 666 "action": ["python", "src/build/gyp_chromium"], |
| 667 }, | 667 }, |
| 668 { | 668 { |
| 669 # Check for landmines (reasons to clobber the build). | 669 # Check for landmines (reasons to clobber the build). |
| 670 "pattern": ".", | 670 "pattern": ".", |
| 671 "action": ["python", "src/build/landmines.py"], | 671 "action": ["python", "src/build/landmines.py"], |
| 672 }, | 672 }, |
| 673 ] | 673 ] |
| OLD | NEW |