| 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": "49321", | 4 "webkit_revision": "49321", |
| 5 "ffmpeg_revision": "27457", | 5 "ffmpeg_revision": "27457", |
| 6 } | 6 } |
| 7 | 7 |
| 8 deps = { | 8 deps = { |
| 9 "src/breakpad/src": | 9 "src/breakpad/src": |
| 10 "http://google-breakpad.googlecode.com/svn/trunk/src@402", | 10 "http://google-breakpad.googlecode.com/svn/trunk/src@402", |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "win": { | 100 "win": { |
| 101 "src/third_party/cygwin": | 101 "src/third_party/cygwin": |
| 102 "/trunk/deps/third_party/cygwin@11984", | 102 "/trunk/deps/third_party/cygwin@11984", |
| 103 | 103 |
| 104 "src/third_party/python_24": | 104 "src/third_party/python_24": |
| 105 "/trunk/deps/third_party/python_24@22967", | 105 "/trunk/deps/third_party/python_24@22967", |
| 106 | 106 |
| 107 "src/third_party/ffmpeg/binaries/chromium/win/ia32": | 107 "src/third_party/ffmpeg/binaries/chromium/win/ia32": |
| 108 "/trunk/deps/third_party/ffmpeg/binaries/win@" + Var("ffmpeg_revision"), | 108 "/trunk/deps/third_party/ffmpeg/binaries/win@" + Var("ffmpeg_revision"), |
| 109 | 109 |
| 110 "src/third_party/pthreads-win32": | |
| 111 "/trunk/deps/third_party/pthreads-win32@26716", | |
| 112 | |
| 113 # Chrome Frame related deps | 110 # Chrome Frame related deps |
| 114 "src/third_party/xulrunner-sdk": | 111 "src/third_party/xulrunner-sdk": |
| 115 "/trunk/deps/third_party/xulrunner-sdk@17887", | 112 "/trunk/deps/third_party/xulrunner-sdk@17887", |
| 116 "src/chrome_frame/tools/test/reference_build/chrome": | 113 "src/chrome_frame/tools/test/reference_build/chrome": |
| 117 "/trunk/deps/reference_builds/chrome_frame@27181", | 114 "/trunk/deps/reference_builds/chrome_frame@27181", |
| 118 }, | 115 }, |
| 119 "mac": { | 116 "mac": { |
| 120 "src/third_party/GTM": | 117 "src/third_party/GTM": |
| 121 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@223", | 118 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@223", |
| 122 "src/third_party/pdfsqueeze": | 119 "src/third_party/pdfsqueeze": |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "$matching_files"], | 197 "$matching_files"], |
| 201 }, | 198 }, |
| 202 { | 199 { |
| 203 # Workaround XCode dependecies problem. | 200 # Workaround XCode dependecies problem. |
| 204 # TODO(bradnelson): remove this when fixed. | 201 # TODO(bradnelson): remove this when fixed. |
| 205 "pattern": ".", | 202 "pattern": ".", |
| 206 "action": ["python", | 203 "action": ["python", |
| 207 "src/build/mac/clobber_generated_headers.py"], | 204 "src/build/mac/clobber_generated_headers.py"], |
| 208 }, | 205 }, |
| 209 ] | 206 ] |
| OLD | NEW |