| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 # Use this googlecode_url variable only if there is an internal mirror for it. | 2 # Use this googlecode_url variable only if there is an internal mirror for it. |
| 3 # If you do not know, use the full path while defining your new deps entry. | 3 # If you do not know, use the full path while defining your new deps entry. |
| 4 "googlecode_url": "http://%s.googlecode.com/svn", | 4 "googlecode_url": "http://%s.googlecode.com/svn", |
| 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
| 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| 7 "webkit_revision": "91660", | 7 "webkit_revision": "91660", |
| 8 "chromium_git": "http://git.chromium.org/git", | 8 "chromium_git": "http://git.chromium.org/git", |
| 9 "swig_revision": "69281", | 9 "swig_revision": "69281", |
| 10 # These hashes need to be updated when nacl_revision is changed. | 10 # These hashes need to be updated when nacl_revision is changed. |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 Var("webkit_trunk") + "/LayoutTests/http/tests/filesystem@" + | 208 Var("webkit_trunk") + "/LayoutTests/http/tests/filesystem@" + |
| 209 Var("webkit_revision"), | 209 Var("webkit_revision"), |
| 210 | 210 |
| 211 "src/third_party/swig/Lib": | 211 "src/third_party/swig/Lib": |
| 212 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), | 212 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), |
| 213 | 213 |
| 214 # WebDriver keeps client and test code separate, and merges when the | 214 # WebDriver keeps client and test code separate, and merges when the |
| 215 # python egg is installed. We run tests directly from src, so import | 215 # python egg is installed. We run tests directly from src, so import |
| 216 # the code into the structure expected by the tests. | 216 # the code into the structure expected by the tests. |
| 217 "src/third_party/webdriver/python/selenium": | 217 "src/third_party/webdriver/python/selenium": |
| 218 "http://selenium.googlecode.com/svn/trunk/py/selenium@12107", | 218 "http://selenium.googlecode.com/svn/trunk/py/selenium@13091", |
| 219 "src/third_party/webdriver/python/selenium/test": | 219 "src/third_party/webdriver/python/selenium/test": |
| 220 "http://selenium.googlecode.com/svn/trunk/py/test@12107", | 220 "http://selenium.googlecode.com/svn/trunk/py/test@13091", |
| 221 | 221 |
| 222 "src/third_party/libvpx": | 222 "src/third_party/libvpx": |
| 223 "/trunk/deps/third_party/libvpx@" + | 223 "/trunk/deps/third_party/libvpx@" + |
| 224 Var("libvpx_revision"), | 224 Var("libvpx_revision"), |
| 225 | 225 |
| 226 "src/third_party/ffmpeg": | 226 "src/third_party/ffmpeg": |
| 227 "/trunk/deps/third_party/ffmpeg/source@" + | 227 "/trunk/deps/third_party/ffmpeg/source@" + |
| 228 Var("ffmpeg_revision"), | 228 Var("ffmpeg_revision"), |
| 229 | 229 |
| 230 "src/third_party/libjingle/source": | 230 "src/third_party/libjingle/source": |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 { | 392 { |
| 393 # This downloads binaries for Native Client's integrated runtime (IRT) | 393 # This downloads binaries for Native Client's integrated runtime (IRT) |
| 394 # library, which is built as NaCl untrusted code. | 394 # library, which is built as NaCl untrusted code. |
| 395 "pattern": ".", | 395 "pattern": ".", |
| 396 "action": ["python", "src/build/download_nacl_irt.py", | 396 "action": ["python", "src/build/download_nacl_irt.py", |
| 397 "--nacl_revision", Var("nacl_revision"), | 397 "--nacl_revision", Var("nacl_revision"), |
| 398 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), | 398 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), |
| 399 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], | 399 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], |
| 400 }, | 400 }, |
| 401 ] | 401 ] |
| OLD | NEW |