| 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": "91912", | 7 "webkit_revision": "91912", |
| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 Var("webkit_trunk") + "/LayoutTests/http/tests/filesystem@" + | 211 Var("webkit_trunk") + "/LayoutTests/http/tests/filesystem@" + |
| 212 Var("webkit_revision"), | 212 Var("webkit_revision"), |
| 213 | 213 |
| 214 "src/third_party/swig/Lib": | 214 "src/third_party/swig/Lib": |
| 215 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), | 215 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), |
| 216 | 216 |
| 217 # WebDriver keeps client and test code separate, and merges when the | 217 # WebDriver keeps client and test code separate, and merges when the |
| 218 # python egg is installed. We run tests directly from src, so import | 218 # python egg is installed. We run tests directly from src, so import |
| 219 # the code into the structure expected by the tests. | 219 # the code into the structure expected by the tests. |
| 220 "src/third_party/webdriver/python/selenium": | 220 "src/third_party/webdriver/python/selenium": |
| 221 "http://selenium.googlecode.com/svn/trunk/py/selenium@12107", | 221 "http://selenium.googlecode.com/svn/trunk/py/selenium@13091", |
| 222 "src/third_party/webdriver/python/selenium/test": | 222 "src/third_party/webdriver/python/selenium/test": |
| 223 "http://selenium.googlecode.com/svn/trunk/py/test@12107", | 223 "http://selenium.googlecode.com/svn/trunk/py/test@13091", |
| 224 | 224 |
| 225 "src/third_party/libvpx": | 225 "src/third_party/libvpx": |
| 226 "/trunk/deps/third_party/libvpx@" + | 226 "/trunk/deps/third_party/libvpx@" + |
| 227 Var("libvpx_revision"), | 227 Var("libvpx_revision"), |
| 228 | 228 |
| 229 "src/third_party/ffmpeg": | 229 "src/third_party/ffmpeg": |
| 230 "/trunk/deps/third_party/ffmpeg/source@" + | 230 "/trunk/deps/third_party/ffmpeg/source@" + |
| 231 Var("ffmpeg_revision"), | 231 Var("ffmpeg_revision"), |
| 232 | 232 |
| 233 "src/third_party/libjingle/source": | 233 "src/third_party/libjingle/source": |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 { | 395 { |
| 396 # This downloads binaries for Native Client's integrated runtime (IRT) | 396 # This downloads binaries for Native Client's integrated runtime (IRT) |
| 397 # library, which is built as NaCl untrusted code. | 397 # library, which is built as NaCl untrusted code. |
| 398 "pattern": ".", | 398 "pattern": ".", |
| 399 "action": ["python", "src/build/download_nacl_irt.py", | 399 "action": ["python", "src/build/download_nacl_irt.py", |
| 400 "--nacl_revision", Var("nacl_revision"), | 400 "--nacl_revision", Var("nacl_revision"), |
| 401 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), | 401 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), |
| 402 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], | 402 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], |
| 403 }, | 403 }, |
| 404 ] | 404 ] |
| OLD | NEW |