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": "75243", | 7 "webkit_revision": "75243", |
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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 | 232 |
233 # Dependencies used by libjpeg-turbo | 233 # Dependencies used by libjpeg-turbo |
234 "src/third_party/yasm/binaries": | 234 "src/third_party/yasm/binaries": |
235 "/trunk/deps/third_party/yasm/binaries@66803", | 235 "/trunk/deps/third_party/yasm/binaries@66803", |
236 }, | 236 }, |
237 "mac": { | 237 "mac": { |
238 "src/chrome/tools/test/reference_build/chrome_mac": | 238 "src/chrome/tools/test/reference_build/chrome_mac": |
239 "/trunk/deps/reference_builds/chrome_mac@70124", | 239 "/trunk/deps/reference_builds/chrome_mac@70124", |
240 | 240 |
241 "src/third_party/GTM": | 241 "src/third_party/GTM": |
242 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@410", | 242 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@425", |
243 "src/third_party/pdfsqueeze": | 243 "src/third_party/pdfsqueeze": |
244 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@2", | 244 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@2", |
245 "src/third_party/lighttpd": | 245 "src/third_party/lighttpd": |
246 "/trunk/deps/third_party/lighttpd@33737", | 246 "/trunk/deps/third_party/lighttpd@33737", |
247 | 247 |
248 "src/third_party/WebKit/WebKit/mac": | 248 "src/third_party/WebKit/WebKit/mac": |
249 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), | 249 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), |
250 "src/third_party/WebKit/WebKitLibraries": | 250 "src/third_party/WebKit/WebKitLibraries": |
251 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 251 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
252 | 252 |
(...skipping 55 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 |