| 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": "81766", | 7 "webkit_revision": "81766", |
| 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 "nacl_revision": "4559", | 10 "nacl_revision": "4559", |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" + | 173 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" + |
| 174 Var("webkit_revision"), | 174 Var("webkit_revision"), |
| 175 | 175 |
| 176 "src/third_party/swig/Lib": | 176 "src/third_party/swig/Lib": |
| 177 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), | 177 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), |
| 178 | 178 |
| 179 # WebDriver keeps client and test code separate, and merges when the | 179 # WebDriver keeps client and test code separate, and merges when the |
| 180 # python egg is installed. We run tests directly from src, so import | 180 # python egg is installed. We run tests directly from src, so import |
| 181 # the code into the structure expected by the tests. | 181 # the code into the structure expected by the tests. |
| 182 "src/third_party/webdriver/python/selenium": | 182 "src/third_party/webdriver/python/selenium": |
| 183 "http://selenium.googlecode.com/svn/trunk/py/selenium@11696", | 183 "http://selenium.googlecode.com/svn/trunk/py/selenium@11776", |
| 184 "src/third_party/webdriver/python/selenium/test": | 184 "src/third_party/webdriver/python/selenium/test": |
| 185 "http://selenium.googlecode.com/svn/trunk/py/test@11696", | 185 "http://selenium.googlecode.com/svn/trunk/py/test@11776", |
| 186 | 186 |
| 187 "src/third_party/libvpx": | 187 "src/third_party/libvpx": |
| 188 "/trunk/deps/third_party/libvpx@" + | 188 "/trunk/deps/third_party/libvpx@" + |
| 189 Var("libvpx_revision"), | 189 Var("libvpx_revision"), |
| 190 | 190 |
| 191 "src/third_party/ffmpeg": | 191 "src/third_party/ffmpeg": |
| 192 "/trunk/deps/third_party/ffmpeg/source@" + | 192 "/trunk/deps/third_party/ffmpeg/source@" + |
| 193 Var("ffmpeg_revision"), | 193 Var("ffmpeg_revision"), |
| 194 | 194 |
| 195 "src/third_party/libjingle/source": | 195 "src/third_party/libjingle/source": |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 ] | 339 ] |
| 340 | 340 |
| 341 | 341 |
| 342 hooks = [ | 342 hooks = [ |
| 343 { | 343 { |
| 344 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 344 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 345 "pattern": ".", | 345 "pattern": ".", |
| 346 "action": ["python", "src/build/gyp_chromium"], | 346 "action": ["python", "src/build/gyp_chromium"], |
| 347 }, | 347 }, |
| 348 ] | 348 ] |
| OLD | NEW |