| 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": "46850", | 4 "webkit_revision": "46850", |
| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 deps_os = { | 84 deps_os = { |
| 85 "win": { | 85 "win": { |
| 86 "src/third_party/cygwin": | 86 "src/third_party/cygwin": |
| 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@19441", | 90 "/trunk/deps/third_party/python_24@19441", |
| 91 }, | 91 }, |
| 92 "mac": { | 92 "mac": { |
| 93 "src/third_party/GTM": | 93 "src/third_party/GTM": |
| 94 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@163", | 94 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@170", |
| 95 "src/third_party/pdfsqueeze": | 95 "src/third_party/pdfsqueeze": |
| 96 "http://pdfsqueeze.googlecode.com/svn/trunk@2", | 96 "http://pdfsqueeze.googlecode.com/svn/trunk@2", |
| 97 "src/third_party/WebKit/WebKit/mac": | 97 "src/third_party/WebKit/WebKit/mac": |
| 98 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), | 98 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), |
| 99 "src/third_party/WebKit/WebKitLibraries": | 99 "src/third_party/WebKit/WebKitLibraries": |
| 100 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 100 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
| 101 }, | 101 }, |
| 102 "unix": { | 102 "unix": { |
| 103 # Linux, really. | 103 # Linux, really. |
| 104 "src/third_party/xdg-utils": | 104 "src/third_party/xdg-utils": |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. | 143 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. |
| 144 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", | 144 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", |
| 145 "action": ["python", "src/tools/gyp/gyp_chromium"], | 145 "action": ["python", "src/tools/gyp/gyp_chromium"], |
| 146 }, | 146 }, |
| 147 { | 147 { |
| 148 # Workaround IncrediBuild problem. http://crbug.com/17706. | 148 # Workaround IncrediBuild problem. http://crbug.com/17706. |
| 149 "pattern": "\\.grd$", | 149 "pattern": "\\.grd$", |
| 150 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], | 150 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], |
| 151 }, | 151 }, |
| 152 ] | 152 ] |
| OLD | NEW |