| 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": "71224", | 7 "webkit_revision": "71224", |
| 8 "skia_revision": "621", | 8 "skia_revision": "621", |
| 9 "chromium_git": "http://git.chromium.org/git", | 9 "chromium_git": "http://git.chromium.org/git", |
| 10 "swig_revision": "40423", | 10 "swig_revision": "40423", |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/workers": | 156 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/workers": |
| 157 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/workers@" + | 157 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/workers@" + |
| 158 Var("webkit_revision"), | 158 Var("webkit_revision"), |
| 159 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/resources": | 159 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/resources": |
| 160 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" + | 160 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" + |
| 161 Var("webkit_revision"), | 161 Var("webkit_revision"), |
| 162 | 162 |
| 163 "src/third_party/swig/Lib": | 163 "src/third_party/swig/Lib": |
| 164 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), | 164 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), |
| 165 | 165 |
| 166 "src/third_party/libvpx": | |
| 167 "/trunk/deps/third_party/libvpx@" + | |
| 168 Var("libvpx_revision"), | |
| 169 | |
| 170 "src/third_party/ffmpeg": | 166 "src/third_party/ffmpeg": |
| 171 "/trunk/deps/third_party/ffmpeg/source@" + | 167 "/trunk/deps/third_party/ffmpeg/source@" + |
| 172 Var("ffmpeg_revision"), | 168 Var("ffmpeg_revision"), |
| 173 | 169 |
| 170 "src/third_party/libvpx/include": |
| 171 "/trunk/deps/third_party/libvpx/include@" + |
| 172 Var("libvpx_revision"), |
| 173 "src/third_party/libvpx/lib": |
| 174 "/trunk/deps/third_party/libvpx/lib@" + |
| 175 Var("libvpx_revision"), |
| 176 |
| 174 "src/third_party/libjingle/source": | 177 "src/third_party/libjingle/source": |
| 175 (Var("googlecode_url") % "libjingle") + "/trunk@" + | 178 (Var("googlecode_url") % "libjingle") + "/trunk@" + |
| 176 Var("libjingle_revision"), | 179 Var("libjingle_revision"), |
| 177 | 180 |
| 178 "src/third_party/speex": | 181 "src/third_party/speex": |
| 179 "/trunk/deps/third_party/speex@56515", | 182 "/trunk/deps/third_party/speex@56515", |
| 180 | 183 |
| 181 "src/third_party/libsrtp/src": | 184 "src/third_party/libsrtp/src": |
| 182 "/trunk/deps/third_party/libsrtp@60080", | 185 "/trunk/deps/third_party/libsrtp@60080", |
| 183 } | 186 } |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 ] | 309 ] |
| 307 | 310 |
| 308 | 311 |
| 309 hooks = [ | 312 hooks = [ |
| 310 { | 313 { |
| 311 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 314 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 312 "pattern": ".", | 315 "pattern": ".", |
| 313 "action": ["python", "src/build/gyp_chromium"], | 316 "action": ["python", "src/build/gyp_chromium"], |
| 314 }, | 317 }, |
| 315 ] | 318 ] |
| OLD | NEW |