| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 "webkit_trunk": | 2 "webkit_trunk": |
| 3 "http://svn.webkit.org/repository/webkit/trunk", | 3 "http://svn.webkit.org/repository/webkit/trunk", |
| 4 "webkit_revision": "53511", | 4 "webkit_revision": "53511", |
| 5 "ffmpeg_revision": "34297", | 5 "ffmpeg_revision": "34297", |
| 6 "skia_revision": "474", | 6 "skia_revision": "474", |
| 7 "chromium_git": "http://src.chromium.org/git", | 7 "chromium_git": "http://src.chromium.org/git", |
| 8 } | 8 } |
| 9 | 9 |
| 10 deps = { | 10 deps = { |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 126 |
| 127 # Parses Windows PE/COFF executable format. | 127 # Parses Windows PE/COFF executable format. |
| 128 "src/third_party/pefile": | 128 "src/third_party/pefile": |
| 129 "http://pefile.googlecode.com/svn/trunk@63", | 129 "http://pefile.googlecode.com/svn/trunk@63", |
| 130 }, | 130 }, |
| 131 "mac": { | 131 "mac": { |
| 132 "src/chrome/tools/test/reference_build/chrome_mac": | 132 "src/chrome/tools/test/reference_build/chrome_mac": |
| 133 "/trunk/deps/reference_builds/chrome_mac@35421", | 133 "/trunk/deps/reference_builds/chrome_mac@35421", |
| 134 | 134 |
| 135 "src/third_party/GTM": | 135 "src/third_party/GTM": |
| 136 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@259", | 136 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@280", |
| 137 "src/third_party/pdfsqueeze": | 137 "src/third_party/pdfsqueeze": |
| 138 "http://pdfsqueeze.googlecode.com/svn/trunk@2", | 138 "http://pdfsqueeze.googlecode.com/svn/trunk@2", |
| 139 "src/third_party/lighttpd": | 139 "src/third_party/lighttpd": |
| 140 "/trunk/deps/third_party/lighttpd@33737", | 140 "/trunk/deps/third_party/lighttpd@33737", |
| 141 | 141 |
| 142 "src/third_party/WebKit/WebKit/mac": | 142 "src/third_party/WebKit/WebKit/mac": |
| 143 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), | 143 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), |
| 144 "src/third_party/WebKit/WebKitLibraries": | 144 "src/third_party/WebKit/WebKitLibraries": |
| 145 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 145 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
| 146 | 146 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 "$matching_files"], | 235 "$matching_files"], |
| 236 }, | 236 }, |
| 237 { | 237 { |
| 238 # Workaround XCode dependecies problem. | 238 # Workaround XCode dependecies problem. |
| 239 # TODO(bradnelson): remove this when fixed. | 239 # TODO(bradnelson): remove this when fixed. |
| 240 "pattern": ".", | 240 "pattern": ".", |
| 241 "action": ["python", | 241 "action": ["python", |
| 242 "src/build/mac/clobber_generated_headers.py"], | 242 "src/build/mac/clobber_generated_headers.py"], |
| 243 }, | 243 }, |
| 244 ] | 244 ] |
| OLD | NEW |