| 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": "75155", | 7 "webkit_revision": "75155", |
| 8 "skia_revision": "636", | 8 "skia_revision": "636", |
| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 191 |
| 192 deps_os = { | 192 deps_os = { |
| 193 "win": { | 193 "win": { |
| 194 "src/chrome/tools/test/reference_build/chrome": | 194 "src/chrome/tools/test/reference_build/chrome": |
| 195 "/trunk/deps/reference_builds/chrome@70122", | 195 "/trunk/deps/reference_builds/chrome@70122", |
| 196 | 196 |
| 197 "src/third_party/cygwin": | 197 "src/third_party/cygwin": |
| 198 "/trunk/deps/third_party/cygwin@66844", | 198 "/trunk/deps/third_party/cygwin@66844", |
| 199 | 199 |
| 200 "src/third_party/python_26": | 200 "src/third_party/python_26": |
| 201 "/trunk/tools/third_party/python_26@67105", | 201 "/trunk/tools/third_party/python_26@70627", |
| 202 | 202 |
| 203 "src/third_party/lighttpd": | 203 "src/third_party/lighttpd": |
| 204 "/trunk/deps/third_party/lighttpd@33727", | 204 "/trunk/deps/third_party/lighttpd@33727", |
| 205 | 205 |
| 206 "src/third_party/ffmpeg/binaries/chromium/win/ia32": | 206 "src/third_party/ffmpeg/binaries/chromium/win/ia32": |
| 207 "/trunk/deps/third_party/ffmpeg/binaries/win@" + Var("ffmpeg_revision"), | 207 "/trunk/deps/third_party/ffmpeg/binaries/win@" + Var("ffmpeg_revision"), |
| 208 | 208 |
| 209 # Chrome Frame related deps | 209 # Chrome Frame related deps |
| 210 "src/third_party/xulrunner-sdk": | 210 "src/third_party/xulrunner-sdk": |
| 211 "/trunk/deps/third_party/xulrunner-sdk@17887", | 211 "/trunk/deps/third_party/xulrunner-sdk@17887", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 ] | 308 ] |
| 309 | 309 |
| 310 | 310 |
| 311 hooks = [ | 311 hooks = [ |
| 312 { | 312 { |
| 313 # 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. |
| 314 "pattern": ".", | 314 "pattern": ".", |
| 315 "action": ["python", "src/build/gyp_chromium"], | 315 "action": ["python", "src/build/gyp_chromium"], |
| 316 }, | 316 }, |
| 317 ] | 317 ] |
| OLD | NEW |