| 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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 "src/third_party/libyuv": | 314 "src/third_party/libyuv": |
| 315 (Var("googlecode_url") % "libyuv") + "/trunk@305", | 315 (Var("googlecode_url") % "libyuv") + "/trunk@305", |
| 316 | 316 |
| 317 "src/third_party/mozc/session": | 317 "src/third_party/mozc/session": |
| 318 (Var("googlecode_url") % "mozc") + "/trunk/src/session@83", | 318 (Var("googlecode_url") % "mozc") + "/trunk/src/session@83", |
| 319 | 319 |
| 320 "src/third_party/mozc/chrome/chromeos/renderer": | 320 "src/third_party/mozc/chrome/chromeos/renderer": |
| 321 (Var("googlecode_url") % "mozc") + "/trunk/src/chrome/chromeos/renderer@83", | 321 (Var("googlecode_url") % "mozc") + "/trunk/src/chrome/chromeos/renderer@83", |
| 322 | 322 |
| 323 "src/third_party/smhasher/src": | 323 "src/third_party/smhasher/src": |
| 324 (Var("googlecode_url") % "smhasher") + "/trunk@136", | 324 (Var("googlecode_url") % "smhasher") + "/trunk@146", |
| 325 | 325 |
| 326 "src/third_party/libphonenumber/src/phonenumbers": | 326 "src/third_party/libphonenumber/src/phonenumbers": |
| 327 (Var("googlecode_url") % "libphonenumber") + | 327 (Var("googlecode_url") % "libphonenumber") + |
| 328 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), | 328 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), |
| 329 "src/third_party/libphonenumber/src/test": | 329 "src/third_party/libphonenumber/src/test": |
| 330 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + | 330 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + |
| 331 Var("libphonenumber_revision"), | 331 Var("libphonenumber_revision"), |
| 332 "src/third_party/libphonenumber/src/resources": | 332 "src/third_party/libphonenumber/src/resources": |
| 333 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + | 333 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + |
| 334 Var("libphonenumber_revision"), | 334 Var("libphonenumber_revision"), |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 "pattern": ".", | 559 "pattern": ".", |
| 560 "action": ["python", "src/build/util/lastchange.py", | 560 "action": ["python", "src/build/util/lastchange.py", |
| 561 "-o", "src/build/util/LASTCHANGE"], | 561 "-o", "src/build/util/LASTCHANGE"], |
| 562 }, | 562 }, |
| 563 { | 563 { |
| 564 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 564 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 565 "pattern": ".", | 565 "pattern": ".", |
| 566 "action": ["python", "src/build/gyp_chromium"], | 566 "action": ["python", "src/build/gyp_chromium"], |
| 567 }, | 567 }, |
| 568 ] | 568 ] |
| OLD | NEW |