| 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": "47034", | 4 "webkit_revision": "47034", |
| 5 } | 5 } |
| 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@346", | 10 "http://google-breakpad.googlecode.com/svn/trunk/src@346", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "/trunk/deps/third_party/cygwin@11984", | 87 "/trunk/deps/third_party/cygwin@11984", |
| 88 | 88 |
| 89 "src/third_party/python_24": | 89 "src/third_party/python_24": |
| 90 "/trunk/deps/third_party/python_24@22967", | 90 "/trunk/deps/third_party/python_24@22967", |
| 91 | 91 |
| 92 "src/third_party/ffmpeg/binaries/chromium": | 92 "src/third_party/ffmpeg/binaries/chromium": |
| 93 "/trunk/deps/third_party/ffmpeg/binaries/win@22838", | 93 "/trunk/deps/third_party/ffmpeg/binaries/win@22838", |
| 94 }, | 94 }, |
| 95 "mac": { | 95 "mac": { |
| 96 "src/third_party/GTM": | 96 "src/third_party/GTM": |
| 97 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@170", | 97 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@171", |
| 98 "src/third_party/pdfsqueeze": | 98 "src/third_party/pdfsqueeze": |
| 99 "http://pdfsqueeze.googlecode.com/svn/trunk@2", | 99 "http://pdfsqueeze.googlecode.com/svn/trunk@2", |
| 100 "src/third_party/WebKit/WebKit/mac": | 100 "src/third_party/WebKit/WebKit/mac": |
| 101 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), | 101 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), |
| 102 "src/third_party/WebKit/WebKitLibraries": | 102 "src/third_party/WebKit/WebKitLibraries": |
| 103 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 103 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
| 104 "src/third_party/ffmpeg/binaries/chromium": | 104 "src/third_party/ffmpeg/binaries/chromium": |
| 105 "/trunk/deps/third_party/ffmpeg/binaries/mac@22838", | 105 "/trunk/deps/third_party/ffmpeg/binaries/mac@22838", |
| 106 }, | 106 }, |
| 107 "unix": { | 107 "unix": { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. | 150 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. |
| 151 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", | 151 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", |
| 152 "action": ["python", "src/tools/gyp/gyp_chromium"], | 152 "action": ["python", "src/tools/gyp/gyp_chromium"], |
| 153 }, | 153 }, |
| 154 { | 154 { |
| 155 # Workaround IncrediBuild problem. http://crbug.com/17706. | 155 # Workaround IncrediBuild problem. http://crbug.com/17706. |
| 156 "pattern": "\\.grd$", | 156 "pattern": "\\.grd$", |
| 157 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], | 157 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], |
| 158 }, | 158 }, |
| 159 ] | 159 ] |
| OLD | NEW |