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": "48354", | 4 "webkit_revision": "48354", |
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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 deps_os = { | 89 deps_os = { |
90 "win": { | 90 "win": { |
91 "src/third_party/cygwin": | 91 "src/third_party/cygwin": |
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 |
| 100 "src/third_party/pthreads-win32": |
| 101 "/trunk/deps/third_party/pthreads-win32@26080", |
99 }, | 102 }, |
100 "mac": { | 103 "mac": { |
101 "src/third_party/GTM": | 104 "src/third_party/GTM": |
102 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@212", | 105 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@212", |
103 "src/third_party/pdfsqueeze": | 106 "src/third_party/pdfsqueeze": |
104 "http://pdfsqueeze.googlecode.com/svn/trunk@2", | 107 "http://pdfsqueeze.googlecode.com/svn/trunk@2", |
105 "src/third_party/WebKit/WebKit/mac": | 108 "src/third_party/WebKit/WebKit/mac": |
106 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), | 109 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), |
107 "src/third_party/WebKit/WebKitLibraries": | 110 "src/third_party/WebKit/WebKitLibraries": |
108 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 111 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
(...skipping 46 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. | 158 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. |
156 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", | 159 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", |
157 "action": ["python", "src/tools/gyp/gyp_chromium"], | 160 "action": ["python", "src/tools/gyp/gyp_chromium"], |
158 }, | 161 }, |
159 { | 162 { |
160 # Workaround IncrediBuild problem. http://crbug.com/17706. | 163 # Workaround IncrediBuild problem. http://crbug.com/17706. |
161 "pattern": "\\.grd$", | 164 "pattern": "\\.grd$", |
162 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], | 165 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], |
163 }, | 166 }, |
164 ] | 167 ] |
OLD | NEW |