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": "76025", | 7 "webkit_revision": "76025", |
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": "4139", | 10 "nacl_revision": "4139", |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 "src/third_party/yasm/binaries": | 231 "src/third_party/yasm/binaries": |
232 "/trunk/deps/third_party/yasm/binaries@66803", | 232 "/trunk/deps/third_party/yasm/binaries@66803", |
233 }, | 233 }, |
234 "mac": { | 234 "mac": { |
235 "src/chrome/tools/test/reference_build/chrome_mac": | 235 "src/chrome/tools/test/reference_build/chrome_mac": |
236 "/trunk/deps/reference_builds/chrome_mac@71120", | 236 "/trunk/deps/reference_builds/chrome_mac@71120", |
237 | 237 |
238 "src/third_party/GTM": | 238 "src/third_party/GTM": |
239 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@425", | 239 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@425", |
240 "src/third_party/pdfsqueeze": | 240 "src/third_party/pdfsqueeze": |
241 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@2", | 241 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", |
242 "src/third_party/lighttpd": | 242 "src/third_party/lighttpd": |
243 "/trunk/deps/third_party/lighttpd@33737", | 243 "/trunk/deps/third_party/lighttpd@33737", |
244 | 244 |
245 "src/third_party/WebKit/WebKitLibraries": | 245 "src/third_party/WebKit/WebKitLibraries": |
246 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 246 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
247 | 247 |
248 "src/third_party/swig/mac": | 248 "src/third_party/swig/mac": |
249 "/trunk/deps/third_party/swig/mac@" + Var("swig_revision"), | 249 "/trunk/deps/third_party/swig/mac@" + Var("swig_revision"), |
250 | 250 |
251 # NSS, for SSLClientSocketNSS. | 251 # NSS, for SSLClientSocketNSS. |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 ] | 303 ] |
304 | 304 |
305 | 305 |
306 hooks = [ | 306 hooks = [ |
307 { | 307 { |
308 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 308 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
309 "pattern": ".", | 309 "pattern": ".", |
310 "action": ["python", "src/build/gyp_chromium"], | 310 "action": ["python", "src/build/gyp_chromium"], |
311 }, | 311 }, |
312 ] | 312 ] |
OLD | NEW |