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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + | 297 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + |
298 Var("libphonenumber_revision"), | 298 Var("libphonenumber_revision"), |
299 | 299 |
300 "src/third_party/undoview": | 300 "src/third_party/undoview": |
301 "/trunk/deps/third_party/undoview@119694", | 301 "/trunk/deps/third_party/undoview@119694", |
302 | 302 |
303 "src/tools/deps2git": | 303 "src/tools/deps2git": |
304 "/trunk/tools/deps2git@202885", | 304 "/trunk/tools/deps2git@202885", |
305 | 305 |
306 "src/third_party/webpagereplay": | 306 "src/third_party/webpagereplay": |
307 (Var("googlecode_url") % "web-page-replay") + "/trunk@511", | 307 (Var("googlecode_url") % "web-page-replay") + "/trunk@513", |
308 | 308 |
309 "src/third_party/pywebsocket/src": | 309 "src/third_party/pywebsocket/src": |
310 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", | 310 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", |
311 | 311 |
312 "src/third_party/opus/src": | 312 "src/third_party/opus/src": |
313 "/trunk/deps/third_party/opus@185324", | 313 "/trunk/deps/third_party/opus@185324", |
314 | 314 |
315 "src/third_party/accessibility-developer-tools": | 315 "src/third_party/accessibility-developer-tools": |
316 Var("chromium_git") + "/external/accessibility-developer-tools.git@ad5df9a53
41d38778658c90e4aa241c4ebe4e8aa", | 316 Var("chromium_git") + "/external/accessibility-developer-tools.git@ad5df9a53
41d38778658c90e4aa241c4ebe4e8aa", |
317 | 317 |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 673 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
674 "pattern": ".", | 674 "pattern": ".", |
675 "action": ["python", "src/build/gyp_chromium"], | 675 "action": ["python", "src/build/gyp_chromium"], |
676 }, | 676 }, |
677 { | 677 { |
678 # Check for landmines (reasons to clobber the build). | 678 # Check for landmines (reasons to clobber the build). |
679 "pattern": ".", | 679 "pattern": ".", |
680 "action": ["python", "src/build/landmines.py"], | 680 "action": ["python", "src/build/landmines.py"], |
681 }, | 681 }, |
682 ] | 682 ] |
OLD | NEW |