| 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": "82468", | 7 "webkit_revision": "82468", |
| 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 "win": { | 226 "win": { |
| 227 "src/chrome/tools/test/reference_build/chrome": | 227 "src/chrome/tools/test/reference_build/chrome": |
| 228 "/trunk/deps/reference_builds/chrome@70122", | 228 "/trunk/deps/reference_builds/chrome@70122", |
| 229 | 229 |
| 230 "src/third_party/cygwin": | 230 "src/third_party/cygwin": |
| 231 "/trunk/deps/third_party/cygwin@66844", | 231 "/trunk/deps/third_party/cygwin@66844", |
| 232 | 232 |
| 233 "src/third_party/python_26": | 233 "src/third_party/python_26": |
| 234 "/trunk/tools/third_party/python_26@70627", | 234 "/trunk/tools/third_party/python_26@70627", |
| 235 | 235 |
| 236 "src/third_party/psyco_win32": |
| 237 "/trunk/deps/third_party/psyco_win32@79861", |
| 238 |
| 236 "src/third_party/lighttpd": | 239 "src/third_party/lighttpd": |
| 237 "/trunk/deps/third_party/lighttpd@33727", | 240 "/trunk/deps/third_party/lighttpd@33727", |
| 238 | 241 |
| 239 "src/third_party/ffmpeg/binaries/chromium/win/ia32": | 242 "src/third_party/ffmpeg/binaries/chromium/win/ia32": |
| 240 "/trunk/deps/third_party/ffmpeg/binaries/win@" + Var("ffmpeg_revision"), | 243 "/trunk/deps/third_party/ffmpeg/binaries/win@" + Var("ffmpeg_revision"), |
| 241 | 244 |
| 242 # Chrome Frame related deps | 245 # Chrome Frame related deps |
| 243 "src/third_party/xulrunner-sdk": | 246 "src/third_party/xulrunner-sdk": |
| 244 "/trunk/deps/third_party/xulrunner-sdk@71609", | 247 "/trunk/deps/third_party/xulrunner-sdk@71609", |
| 245 "src/chrome_frame/tools/test/reference_build/chrome": | 248 "src/chrome_frame/tools/test/reference_build/chrome": |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 ] | 345 ] |
| 343 | 346 |
| 344 | 347 |
| 345 hooks = [ | 348 hooks = [ |
| 346 { | 349 { |
| 347 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 350 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 348 "pattern": ".", | 351 "pattern": ".", |
| 349 "action": ["python", "src/build/gyp_chromium"], | 352 "action": ["python", "src/build/gyp_chromium"], |
| 350 }, | 353 }, |
| 351 ] | 354 ] |
| OLD | NEW |