| 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": "71013", |    7   "webkit_revision": "71013", | 
|    8   "skia_revision": "621", |    8   "skia_revision": "621", | 
|    9   "chromium_git": "http://git.chromium.org/git", |    9   "chromium_git": "http://git.chromium.org/git", | 
|   10   "swig_revision": "40423", |   10   "swig_revision": "40423", | 
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  167     "/trunk/deps/third_party/ffmpeg/source@" + |  167     "/trunk/deps/third_party/ffmpeg/source@" + | 
|  168     Var("ffmpeg_revision"), |  168     Var("ffmpeg_revision"), | 
|  169  |  169  | 
|  170   "src/third_party/libvpx/include": |  170   "src/third_party/libvpx/include": | 
|  171     "/trunk/deps/third_party/libvpx/include@" + |  171     "/trunk/deps/third_party/libvpx/include@" + | 
|  172     Var("libvpx_revision"), |  172     Var("libvpx_revision"), | 
|  173   "src/third_party/libvpx/lib": |  173   "src/third_party/libvpx/lib": | 
|  174     "/trunk/deps/third_party/libvpx/lib@" + |  174     "/trunk/deps/third_party/libvpx/lib@" + | 
|  175     Var("libvpx_revision"), |  175     Var("libvpx_revision"), | 
|  176  |  176  | 
|  177   "src/third_party/ppapi": |  | 
|  178     (Var("googlecode_url") % "ppapi") + "/trunk@304", |  | 
|  179  |  | 
|  180   "src/third_party/libjingle/source": |  177   "src/third_party/libjingle/source": | 
|  181     (Var("googlecode_url") % "libjingle") + "/trunk@" + |  178     (Var("googlecode_url") % "libjingle") + "/trunk@" + | 
|  182     Var("libjingle_revision"), |  179     Var("libjingle_revision"), | 
|  183  |  180  | 
|  184   "src/third_party/speex": |  181   "src/third_party/speex": | 
|  185     "/trunk/deps/third_party/speex@56515", |  182     "/trunk/deps/third_party/speex@56515", | 
|  186  |  183  | 
|  187   "src/third_party/libsrtp/src": |  184   "src/third_party/libsrtp/src": | 
|  188     "/trunk/deps/third_party/libsrtp@60080", |  185     "/trunk/deps/third_party/libsrtp@60080", | 
|  189 } |  186 } | 
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  311 ] |  308 ] | 
|  312  |  309  | 
|  313  |  310  | 
|  314 hooks = [ |  311 hooks = [ | 
|  315   { |  312   { | 
|  316     # 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. | 
|  317     "pattern": ".", |  314     "pattern": ".", | 
|  318     "action": ["python", "src/build/gyp_chromium"], |  315     "action": ["python", "src/build/gyp_chromium"], | 
|  319   }, |  316   }, | 
|  320 ] |  317 ] | 
| OLD | NEW |