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": "60830", | 4 "webkit_revision": "60830", |
5 "ffmpeg_revision": "49039", | 5 "ffmpeg_revision": "49039", |
6 "skia_revision": "562", | 6 "skia_revision": "562", |
7 "chromium_git": "http://src.chromium.org/git", | 7 "chromium_git": "http://src.chromium.org/git", |
8 "swig_revision": "40423", | 8 "swig_revision": "40423", |
9 "nacl_revision": "2407", | 9 "nacl_revision": "2407", |
10 "libvpx_revision": "47941", | 10 "libvpx_revision": "47941", |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 # NSS, for SSLClientSocketNSS. | 193 # NSS, for SSLClientSocketNSS. |
194 "src/third_party/nss": | 194 "src/third_party/nss": |
195 "/trunk/deps/third_party/nss@48440", | 195 "/trunk/deps/third_party/nss@48440", |
196 | 196 |
197 "src/third_party/swig/win": | 197 "src/third_party/swig/win": |
198 "/trunk/deps/third_party/swig/win@" + Var("swig_revision"), | 198 "/trunk/deps/third_party/swig/win@" + Var("swig_revision"), |
199 | 199 |
200 "src/third_party/mingw-w64/mingw/bin": | 200 "src/third_party/mingw-w64/mingw/bin": |
201 ("http://nativeclient.googlecode.com/svn/trunk/src/third_party/mingw-w64/m
ingw/bin@" + | 201 ("http://nativeclient.googlecode.com/svn/trunk/src/third_party/mingw-w64/m
ingw/bin@" + |
202 Var("nacl_revision")), | 202 Var("nacl_revision")), |
| 203 |
| 204 "src/rlz": |
| 205 "http://rlz.googlecode.com/svn/trunk@4", |
203 }, | 206 }, |
204 "mac": { | 207 "mac": { |
205 "src/chrome/tools/test/reference_build/chrome_mac": | 208 "src/chrome/tools/test/reference_build/chrome_mac": |
206 "/trunk/deps/reference_builds/chrome_mac@41963", | 209 "/trunk/deps/reference_builds/chrome_mac@41963", |
207 | 210 |
208 "src/third_party/GTM": | 211 "src/third_party/GTM": |
209 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@330", | 212 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@330", |
210 "src/third_party/pdfsqueeze": | 213 "src/third_party/pdfsqueeze": |
211 "http://pdfsqueeze.googlecode.com/svn/trunk@2", | 214 "http://pdfsqueeze.googlecode.com/svn/trunk@2", |
212 "src/third_party/lighttpd": | 215 "src/third_party/lighttpd": |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), | 247 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), |
245 }, | 248 }, |
246 } | 249 } |
247 | 250 |
248 | 251 |
249 include_rules = [ | 252 include_rules = [ |
250 # Everybody can use some things. | 253 # Everybody can use some things. |
251 "+base", | 254 "+base", |
252 "+build", | 255 "+build", |
253 "+ipc", | 256 "+ipc", |
| 257 "+rlz", |
254 | 258 |
255 # For now, we allow ICU to be included by specifying "unicode/...", although | 259 # For now, we allow ICU to be included by specifying "unicode/...", although |
256 # this should probably change. | 260 # this should probably change. |
257 "+unicode", | 261 "+unicode", |
258 "+testing", | 262 "+testing", |
259 ] | 263 ] |
260 | 264 |
261 | 265 |
262 # checkdeps.py shouldn't check include paths for files in these dirs: | 266 # checkdeps.py shouldn't check include paths for files in these dirs: |
263 skip_child_includes = [ | 267 skip_child_includes = [ |
(...skipping 18 matching lines...) Expand all Loading... |
282 }, | 286 }, |
283 { | 287 { |
284 # Workaround XCode dependecies problem. | 288 # Workaround XCode dependecies problem. |
285 # TODO(bradnelson): remove this when fixed. | 289 # TODO(bradnelson): remove this when fixed. |
286 "pattern": ".", | 290 "pattern": ".", |
287 "action": ["python", | 291 "action": ["python", |
288 "src/build/mac/clobber_generated_headers.py"], | 292 "src/build/mac/clobber_generated_headers.py"], |
289 }, | 293 }, |
290 ] | 294 ] |
291 | 295 |
OLD | NEW |