| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 "googlecode_url": "http://%s.googlecode.com/svn", | 2 "googlecode_url": "http://%s.googlecode.com/svn", |
| 3 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 3 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
| 4 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 4 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| 5 "webkit_revision": "67957", | 5 "webkit_revision": "67957", |
| 6 "ffmpeg_revision": "58574", | 6 "ffmpeg_revision": "58574", |
| 7 "skia_revision": "593", | 7 "skia_revision": "593", |
| 8 "chromium_git": "http://src.chromium.org/git", | 8 "chromium_git": "http://src.chromium.org/git", |
| 9 "swig_revision": "40423", | 9 "swig_revision": "40423", |
| 10 "nacl_revision": "3186", | 10 "nacl_revision": "3186", |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 "/trunk/deps/third_party/nss@55513", | 210 "/trunk/deps/third_party/nss@55513", |
| 211 | 211 |
| 212 "src/third_party/swig/win": | 212 "src/third_party/swig/win": |
| 213 "/trunk/deps/third_party/swig/win@" + Var("swig_revision"), | 213 "/trunk/deps/third_party/swig/win@" + Var("swig_revision"), |
| 214 | 214 |
| 215 "src/third_party/mingw-w64/mingw/bin": | 215 "src/third_party/mingw-w64/mingw/bin": |
| 216 (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" + | 216 (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" + |
| 217 Var("nacl_revision")), | 217 Var("nacl_revision")), |
| 218 | 218 |
| 219 "src/rlz": | 219 "src/rlz": |
| 220 (Var("googlecode_url") % "rlz") + "/trunk@18", | 220 (Var("googlecode_url") % "rlz") + "/trunk@23", |
| 221 }, | 221 }, |
| 222 "mac": { | 222 "mac": { |
| 223 "src/chrome/tools/test/reference_build/chrome_mac": | 223 "src/chrome/tools/test/reference_build/chrome_mac": |
| 224 "/trunk/deps/reference_builds/chrome_mac@41963", | 224 "/trunk/deps/reference_builds/chrome_mac@41963", |
| 225 | 225 |
| 226 "src/third_party/GTM": | 226 "src/third_party/GTM": |
| 227 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@375", | 227 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@375", |
| 228 "src/third_party/pdfsqueeze": | 228 "src/third_party/pdfsqueeze": |
| 229 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@2", | 229 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@2", |
| 230 "src/third_party/lighttpd": | 230 "src/third_party/lighttpd": |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 ] | 296 ] |
| 297 | 297 |
| 298 | 298 |
| 299 hooks = [ | 299 hooks = [ |
| 300 { | 300 { |
| 301 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 301 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 302 "pattern": ".", | 302 "pattern": ".", |
| 303 "action": ["python", "src/build/gyp_chromium"], | 303 "action": ["python", "src/build/gyp_chromium"], |
| 304 }, | 304 }, |
| 305 ] | 305 ] |
| OLD | NEW |