| 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": "48313", | 4 "webkit_revision": "48313", |
| 5 } | 5 } |
| 6 | 6 |
| 7 deps = { | 7 deps = { |
| 8 "src/breakpad/src": | 8 "src/breakpad/src": |
| 9 "http://google-breakpad.googlecode.com/svn/trunk/src@391", | 9 "http://google-breakpad.googlecode.com/svn/trunk/src@391", |
| 10 | 10 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "/trunk/deps/third_party/cygwin@11984", | 92 "/trunk/deps/third_party/cygwin@11984", |
| 93 | 93 |
| 94 "src/third_party/python_24": | 94 "src/third_party/python_24": |
| 95 "/trunk/deps/third_party/python_24@22967", | 95 "/trunk/deps/third_party/python_24@22967", |
| 96 | 96 |
| 97 "src/third_party/ffmpeg/binaries/chromium": | 97 "src/third_party/ffmpeg/binaries/chromium": |
| 98 "/trunk/deps/third_party/ffmpeg/binaries/win@25436", | 98 "/trunk/deps/third_party/ffmpeg/binaries/win@25436", |
| 99 }, | 99 }, |
| 100 "mac": { | 100 "mac": { |
| 101 "src/third_party/GTM": | 101 "src/third_party/GTM": |
| 102 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@211", | 102 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@212", |
| 103 "src/third_party/pdfsqueeze": | 103 "src/third_party/pdfsqueeze": |
| 104 "http://pdfsqueeze.googlecode.com/svn/trunk@2", | 104 "http://pdfsqueeze.googlecode.com/svn/trunk@2", |
| 105 "src/third_party/WebKit/WebKit/mac": | 105 "src/third_party/WebKit/WebKit/mac": |
| 106 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), | 106 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), |
| 107 "src/third_party/WebKit/WebKitLibraries": | 107 "src/third_party/WebKit/WebKitLibraries": |
| 108 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 108 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
| 109 "src/third_party/ffmpeg/binaries/chromium": | 109 "src/third_party/ffmpeg/binaries/chromium": |
| 110 "/trunk/deps/third_party/ffmpeg/binaries/mac@25436", | 110 "/trunk/deps/third_party/ffmpeg/binaries/mac@25436", |
| 111 }, | 111 }, |
| 112 "unix": { | 112 "unix": { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. | 155 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. |
| 156 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", | 156 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", |
| 157 "action": ["python", "src/tools/gyp/gyp_chromium"], | 157 "action": ["python", "src/tools/gyp/gyp_chromium"], |
| 158 }, | 158 }, |
| 159 { | 159 { |
| 160 # Workaround IncrediBuild problem. http://crbug.com/17706. | 160 # Workaround IncrediBuild problem. http://crbug.com/17706. |
| 161 "pattern": "\\.grd$", | 161 "pattern": "\\.grd$", |
| 162 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], | 162 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], |
| 163 }, | 163 }, |
| 164 ] | 164 ] |
| OLD | NEW |