OLD | NEW |
1 vars = { | 1 vars = { |
2 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 2 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
3 "nacl_trunk": "http://nativeclient.googlecode.com/svn/trunk", | 3 "nacl_trunk": "http://nativeclient.googlecode.com/svn/trunk", |
4 "webkit_revision": "65885", | 4 "webkit_revision": "65885", |
5 "ffmpeg_revision": "56386", | 5 "ffmpeg_revision": "56386", |
6 "skia_revision": "593", | 6 "skia_revision": "593", |
7 "chromium_git": "http://src.chromium.org/git", | 7 "chromium_git": "http://src.chromium.org/git", |
8 "swig_revision": "40423", | 8 "swig_revision": "40423", |
9 "nacl_revision": "3005", | 9 "nacl_revision": "3005", |
10 "libvpx_revision": "55944", | 10 "libvpx_revision": "55944", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 "src/third_party/protobuf2/src": | 45 "src/third_party/protobuf2/src": |
46 "http://protobuf.googlecode.com/svn/trunk@327", | 46 "http://protobuf.googlecode.com/svn/trunk@327", |
47 | 47 |
48 "src/third_party/cacheinvalidation/files": | 48 "src/third_party/cacheinvalidation/files": |
49 "http://google-cache-invalidation-api.googlecode.com/svn/trunk@35", | 49 "http://google-cache-invalidation-api.googlecode.com/svn/trunk@35", |
50 | 50 |
51 "src/tools/gyp": | 51 "src/tools/gyp": |
52 "http://gyp.googlecode.com/svn/trunk@840", | 52 "http://gyp.googlecode.com/svn/trunk@840", |
53 | 53 |
54 "src/v8": | 54 "src/v8": |
55 "http://v8.googlecode.com/svn/trunk@5295", | 55 "http://v8.googlecode.com/svn/trunk@5318", |
56 | 56 |
57 "src/native_client": | 57 "src/native_client": |
58 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), | 58 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), |
59 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": | 59 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": |
60 "http://nativeclient.googlecode.com/svn/trunk/src/native_client/tests/prebui
lt@" + | 60 "http://nativeclient.googlecode.com/svn/trunk/src/native_client/tests/prebui
lt@" + |
61 Var("nacl_revision"), | 61 Var("nacl_revision"), |
62 | 62 |
63 "src/third_party/skia/src": | 63 "src/third_party/skia/src": |
64 "http://skia.googlecode.com/svn/trunk/src@" + Var("skia_revision"), | 64 "http://skia.googlecode.com/svn/trunk/src@" + Var("skia_revision"), |
65 | 65 |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 ] | 292 ] |
293 | 293 |
294 | 294 |
295 hooks = [ | 295 hooks = [ |
296 { | 296 { |
297 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 297 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
298 "pattern": ".", | 298 "pattern": ".", |
299 "action": ["python", "src/build/gyp_chromium"], | 299 "action": ["python", "src/build/gyp_chromium"], |
300 }, | 300 }, |
301 ] | 301 ] |
OLD | NEW |