OLD | NEW |
1 vars = { | 1 vars = { |
2 "googlecode_url": "http://%s.googlecode.com/svn", | 2 "googlecode_url": "http://%s.googlecode.com/svn", |
3 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 3 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
4 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 4 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
5 "webkit_revision": "68100", | 5 "webkit_revision": "68100", |
6 "ffmpeg_revision": "58574", | 6 "ffmpeg_revision": "58574", |
7 "skia_revision": "599", | 7 "skia_revision": "599", |
8 "chromium_git": "http://src.chromium.org/git", | 8 "chromium_git": "http://src.chromium.org/git", |
9 "swig_revision": "40423", | 9 "swig_revision": "40423", |
10 "nacl_revision": "3186", | 10 "nacl_revision": "3186", |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 }, | 269 }, |
270 } | 270 } |
271 | 271 |
272 | 272 |
273 include_rules = [ | 273 include_rules = [ |
274 # Everybody can use some things. | 274 # Everybody can use some things. |
275 "+base", | 275 "+base", |
276 "+build", | 276 "+build", |
277 "+ipc", | 277 "+ipc", |
278 "+rlz", | 278 "+rlz", |
| 279 "+third_party/undoview", |
279 | 280 |
280 # For now, we allow ICU to be included by specifying "unicode/...", although | 281 # For now, we allow ICU to be included by specifying "unicode/...", although |
281 # this should probably change. | 282 # this should probably change. |
282 "+unicode", | 283 "+unicode", |
283 "+testing", | 284 "+testing", |
284 ] | 285 ] |
285 | 286 |
286 | 287 |
287 # checkdeps.py shouldn't check include paths for files in these dirs: | 288 # checkdeps.py shouldn't check include paths for files in these dirs: |
288 skip_child_includes = [ | 289 skip_child_includes = [ |
(...skipping 10 matching lines...) Expand all Loading... |
299 ] | 300 ] |
300 | 301 |
301 | 302 |
302 hooks = [ | 303 hooks = [ |
303 { | 304 { |
304 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 305 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
305 "pattern": ".", | 306 "pattern": ".", |
306 "action": ["python", "src/build/gyp_chromium"], | 307 "action": ["python", "src/build/gyp_chromium"], |
307 }, | 308 }, |
308 ] | 309 ] |
OLD | NEW |