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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + | 301 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + |
302 Var("libphonenumber_revision"), | 302 Var("libphonenumber_revision"), |
303 | 303 |
304 "src/third_party/undoview": | 304 "src/third_party/undoview": |
305 "/trunk/deps/third_party/undoview@119694", | 305 "/trunk/deps/third_party/undoview@119694", |
306 | 306 |
307 "src/tools/deps2git": | 307 "src/tools/deps2git": |
308 "/trunk/tools/deps2git@148781", | 308 "/trunk/tools/deps2git@148781", |
309 | 309 |
310 "src/third_party/webpagereplay": | 310 "src/third_party/webpagereplay": |
311 (Var("googlecode_url") % "web-page-replay") + "/trunk@489", | 311 (Var("googlecode_url") % "web-page-replay") + "/trunk@492", |
312 | 312 |
313 "src/third_party/pywebsocket/src": | 313 "src/third_party/pywebsocket/src": |
314 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@658", | 314 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@658", |
315 } | 315 } |
316 | 316 |
317 | 317 |
318 deps_os = { | 318 deps_os = { |
319 "win": { | 319 "win": { |
320 "src/chrome/tools/test/reference_build/chrome_win": | 320 "src/chrome/tools/test/reference_build/chrome_win": |
321 "/trunk/deps/reference_builds/chrome_win@137747", | 321 "/trunk/deps/reference_builds/chrome_win@137747", |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 "pattern": ".", | 597 "pattern": ".", |
598 "action": ["python", "src/build/util/lastchange.py", | 598 "action": ["python", "src/build/util/lastchange.py", |
599 "-o", "src/build/util/LASTCHANGE"], | 599 "-o", "src/build/util/LASTCHANGE"], |
600 }, | 600 }, |
601 { | 601 { |
602 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 602 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
603 "pattern": ".", | 603 "pattern": ".", |
604 "action": ["python", "src/build/gyp_chromium"], | 604 "action": ["python", "src/build/gyp_chromium"], |
605 }, | 605 }, |
606 ] | 606 ] |
OLD | NEW |