| 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 "src/third_party/libyuv": | 310 "src/third_party/libyuv": |
| 311 (Var("googlecode_url") % "libyuv") + "/trunk@311", | 311 (Var("googlecode_url") % "libyuv") + "/trunk@311", |
| 312 | 312 |
| 313 "src/third_party/mozc/session": | 313 "src/third_party/mozc/session": |
| 314 (Var("googlecode_url") % "mozc") + "/trunk/src/session@83", | 314 (Var("googlecode_url") % "mozc") + "/trunk/src/session@83", |
| 315 | 315 |
| 316 "src/third_party/mozc/chrome/chromeos/renderer": | 316 "src/third_party/mozc/chrome/chromeos/renderer": |
| 317 (Var("googlecode_url") % "mozc") + "/trunk/src/chrome/chromeos/renderer@83", | 317 (Var("googlecode_url") % "mozc") + "/trunk/src/chrome/chromeos/renderer@83", |
| 318 | 318 |
| 319 "src/third_party/smhasher/src": | 319 "src/third_party/smhasher/src": |
| 320 (Var("googlecode_url") % "smhasher") + "/trunk@136", | 320 (Var("googlecode_url") % "smhasher") + "/trunk@146", |
| 321 | 321 |
| 322 "src/third_party/libphonenumber/src/phonenumbers": | 322 "src/third_party/libphonenumber/src/phonenumbers": |
| 323 (Var("googlecode_url") % "libphonenumber") + | 323 (Var("googlecode_url") % "libphonenumber") + |
| 324 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), | 324 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), |
| 325 "src/third_party/libphonenumber/src/test": | 325 "src/third_party/libphonenumber/src/test": |
| 326 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + | 326 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + |
| 327 Var("libphonenumber_revision"), | 327 Var("libphonenumber_revision"), |
| 328 "src/third_party/libphonenumber/src/resources": | 328 "src/third_party/libphonenumber/src/resources": |
| 329 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + | 329 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + |
| 330 Var("libphonenumber_revision"), | 330 Var("libphonenumber_revision"), |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 "pattern": ".", | 567 "pattern": ".", |
| 568 "action": ["python", "src/build/util/lastchange.py", | 568 "action": ["python", "src/build/util/lastchange.py", |
| 569 "-o", "src/build/util/LASTCHANGE"], | 569 "-o", "src/build/util/LASTCHANGE"], |
| 570 }, | 570 }, |
| 571 { | 571 { |
| 572 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 572 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 573 "pattern": ".", | 573 "pattern": ".", |
| 574 "action": ["python", "src/build/gyp_chromium"], | 574 "action": ["python", "src/build/gyp_chromium"], |
| 575 }, | 575 }, |
| 576 ] | 576 ] |
| OLD | NEW |