| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 | 292 |
| 293 "src/third_party/jsoncpp/source/include": | 293 "src/third_party/jsoncpp/source/include": |
| 294 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + | 294 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + |
| 295 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"), | 295 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"), |
| 296 | 296 |
| 297 "src/third_party/jsoncpp/source/src/lib_json": | 297 "src/third_party/jsoncpp/source/src/lib_json": |
| 298 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + | 298 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + |
| 299 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), | 299 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), |
| 300 | 300 |
| 301 "src/third_party/libyuv": | 301 "src/third_party/libyuv": |
| 302 (Var("googlecode_url") % "libyuv") + "/trunk@540", | 302 (Var("googlecode_url") % "libyuv") + "/trunk@590", |
| 303 | 303 |
| 304 "src/third_party/smhasher/src": | 304 "src/third_party/smhasher/src": |
| 305 (Var("googlecode_url") % "smhasher") + "/trunk@147", | 305 (Var("googlecode_url") % "smhasher") + "/trunk@147", |
| 306 | 306 |
| 307 "src/third_party/libphonenumber/src/phonenumbers": | 307 "src/third_party/libphonenumber/src/phonenumbers": |
| 308 (Var("googlecode_url") % "libphonenumber") + | 308 (Var("googlecode_url") % "libphonenumber") + |
| 309 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), | 309 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), |
| 310 "src/third_party/libphonenumber/src/test": | 310 "src/third_party/libphonenumber/src/test": |
| 311 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + | 311 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + |
| 312 Var("libphonenumber_revision"), | 312 Var("libphonenumber_revision"), |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 675 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 676 "pattern": ".", | 676 "pattern": ".", |
| 677 "action": ["python", "src/build/gyp_chromium"], | 677 "action": ["python", "src/build/gyp_chromium"], |
| 678 }, | 678 }, |
| 679 { | 679 { |
| 680 # Check for landmines (reasons to clobber the build). | 680 # Check for landmines (reasons to clobber the build). |
| 681 "pattern": ".", | 681 "pattern": ".", |
| 682 "action": ["python", "src/build/landmines.py"], | 682 "action": ["python", "src/build/landmines.py"], |
| 683 }, | 683 }, |
| 684 ] | 684 ] |
| OLD | NEW |