| 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": "75584", | 7 "webkit_revision": "75584", |
| 8 "skia_revision": "673", | 8 "skia_revision": "673", |
| 9 "chromium_git": "http://git.chromium.org/git", | 9 "chromium_git": "http://git.chromium.org/git", |
| 10 "swig_revision": "69281", | 10 "swig_revision": "69281", |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 "/trunk/deps/third_party/speex@70427", | 179 "/trunk/deps/third_party/speex@70427", |
| 180 | 180 |
| 181 "src/third_party/libsrtp/src": | 181 "src/third_party/libsrtp/src": |
| 182 "/trunk/deps/third_party/libsrtp@60080", | 182 "/trunk/deps/third_party/libsrtp@60080", |
| 183 | 183 |
| 184 "src/third_party/yasm/source/patched-yasm": | 184 "src/third_party/yasm/source/patched-yasm": |
| 185 "/trunk/deps/third_party/yasm/patched-yasm@50870", | 185 "/trunk/deps/third_party/yasm/patched-yasm@50870", |
| 186 | 186 |
| 187 "src/third_party/libjpeg_turbo": | 187 "src/third_party/libjpeg_turbo": |
| 188 "/trunk/deps/third_party/libjpeg_turbo@66929", | 188 "/trunk/deps/third_party/libjpeg_turbo@66929", |
| 189 |
| 190 "src/third_party/flac": |
| 191 "/trunk/deps/third_party/flac@71053", |
| 189 } | 192 } |
| 190 | 193 |
| 191 | 194 |
| 192 deps_os = { | 195 deps_os = { |
| 193 "win": { | 196 "win": { |
| 194 "src/chrome/tools/test/reference_build/chrome": | 197 "src/chrome/tools/test/reference_build/chrome": |
| 195 "/trunk/deps/reference_builds/chrome@70122", | 198 "/trunk/deps/reference_builds/chrome@70122", |
| 196 | 199 |
| 197 "src/third_party/cygwin": | 200 "src/third_party/cygwin": |
| 198 "/trunk/deps/third_party/cygwin@66844", | 201 "/trunk/deps/third_party/cygwin@66844", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 ] | 311 ] |
| 309 | 312 |
| 310 | 313 |
| 311 hooks = [ | 314 hooks = [ |
| 312 { | 315 { |
| 313 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 316 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 314 "pattern": ".", | 317 "pattern": ".", |
| 315 "action": ["python", "src/build/gyp_chromium"], | 318 "action": ["python", "src/build/gyp_chromium"], |
| 316 }, | 319 }, |
| 317 ] | 320 ] |
| OLD | NEW |