| 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": "48185", | 4 "webkit_revision": "48185", |
| 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@391", | 10 "http://google-breakpad.googlecode.com/svn/trunk/src@391", |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "src/third_party/WebKit/WebKit/mac": | 106 "src/third_party/WebKit/WebKit/mac": |
| 107 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), | 107 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), |
| 108 "src/third_party/WebKit/WebKitLibraries": | 108 "src/third_party/WebKit/WebKitLibraries": |
| 109 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 109 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
| 110 "src/third_party/ffmpeg/binaries/chromium": | 110 "src/third_party/ffmpeg/binaries/chromium": |
| 111 "/trunk/deps/third_party/ffmpeg/binaries/mac@25436", | 111 "/trunk/deps/third_party/ffmpeg/binaries/mac@25436", |
| 112 }, | 112 }, |
| 113 "unix": { | 113 "unix": { |
| 114 # Linux, really. | 114 # Linux, really. |
| 115 "src/third_party/xdg-utils": | 115 "src/third_party/xdg-utils": |
| 116 "/trunk/deps/third_party/xdg-utils@22207", | 116 "/trunk/deps/third_party/xdg-utils@25672", |
| 117 "src/third_party/ffmpeg/binaries/chromium": | 117 "src/third_party/ffmpeg/binaries/chromium": |
| 118 "/trunk/deps/third_party/ffmpeg/binaries/linux@25436", | 118 "/trunk/deps/third_party/ffmpeg/binaries/linux@25436", |
| 119 }, | 119 }, |
| 120 } | 120 } |
| 121 | 121 |
| 122 | 122 |
| 123 include_rules = [ | 123 include_rules = [ |
| 124 # Everybody can use some things. | 124 # Everybody can use some things. |
| 125 "+base", | 125 "+base", |
| 126 "+build", | 126 "+build", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 156 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. | 156 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. |
| 157 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", | 157 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", |
| 158 "action": ["python", "src/tools/gyp/gyp_chromium"], | 158 "action": ["python", "src/tools/gyp/gyp_chromium"], |
| 159 }, | 159 }, |
| 160 { | 160 { |
| 161 # Workaround IncrediBuild problem. http://crbug.com/17706. | 161 # Workaround IncrediBuild problem. http://crbug.com/17706. |
| 162 "pattern": "\\.grd$", | 162 "pattern": "\\.grd$", |
| 163 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], | 163 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], |
| 164 }, | 164 }, |
| 165 ] | 165 ] |
| OLD | NEW |