| 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": "71013", | 7 "webkit_revision": "71013", |
| 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 |
| 166 "src/third_party/ffmpeg": | 170 "src/third_party/ffmpeg": |
| 167 "/trunk/deps/third_party/ffmpeg/source@" + | 171 "/trunk/deps/third_party/ffmpeg/source@" + |
| 168 Var("ffmpeg_revision"), | 172 Var("ffmpeg_revision"), |
| 169 | 173 |
| 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 | |
| 177 "src/third_party/ppapi": | 174 "src/third_party/ppapi": |
| 178 (Var("googlecode_url") % "ppapi") + "/trunk@304", | 175 (Var("googlecode_url") % "ppapi") + "/trunk@304", |
| 179 | 176 |
| 180 "src/third_party/libjingle/source": | 177 "src/third_party/libjingle/source": |
| 181 (Var("googlecode_url") % "libjingle") + "/trunk@" + | 178 (Var("googlecode_url") % "libjingle") + "/trunk@" + |
| 182 Var("libjingle_revision"), | 179 Var("libjingle_revision"), |
| 183 | 180 |
| 184 "src/third_party/speex": | 181 "src/third_party/speex": |
| 185 "/trunk/deps/third_party/speex@56515", | 182 "/trunk/deps/third_party/speex@56515", |
| 186 | 183 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 ] | 308 ] |
| 312 | 309 |
| 313 | 310 |
| 314 hooks = [ | 311 hooks = [ |
| 315 { | 312 { |
| 316 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 313 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 317 "pattern": ".", | 314 "pattern": ".", |
| 318 "action": ["python", "src/build/gyp_chromium"], | 315 "action": ["python", "src/build/gyp_chromium"], |
| 319 }, | 316 }, |
| 320 ] | 317 ] |
| OLD | NEW |