| OLD | NEW |
| 1 deps = { | 1 deps = { |
| 2 "src/breakpad/src": | 2 "src/breakpad/src": |
| 3 "http://google-breakpad.googlecode.com/svn/trunk/src@285", | 3 "http://google-breakpad.googlecode.com/svn/trunk/src@285", |
| 4 | 4 |
| 5 "src/googleurl": | 5 "src/googleurl": |
| 6 "http://google-url.googlecode.com/svn/trunk@94", | 6 "http://google-url.googlecode.com/svn/trunk@94", |
| 7 | 7 |
| 8 "src/sdch/open-vcdiff": | 8 "src/sdch/open-vcdiff": |
| 9 "http://open-vcdiff.googlecode.com/svn/trunk@22", | 9 "http://open-vcdiff.googlecode.com/svn/trunk@22", |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "/trunk/deps/third_party/python_24@3247", | 24 "/trunk/deps/third_party/python_24@3247", |
| 25 | 25 |
| 26 "src/third_party/svn": | 26 "src/third_party/svn": |
| 27 "/trunk/deps/third_party/svn@3230", | 27 "/trunk/deps/third_party/svn@3230", |
| 28 | 28 |
| 29 "src/v8": | 29 "src/v8": |
| 30 "http://v8.googlecode.com/svn/trunk@572", | 30 "http://v8.googlecode.com/svn/trunk@572", |
| 31 | 31 |
| 32 "src/webkit/data/layout_tests/LayoutTests": | 32 "src/webkit/data/layout_tests/LayoutTests": |
| 33 "http://svn.webkit.org/repository/webkit/trunk/LayoutTests@36102", | 33 "http://svn.webkit.org/repository/webkit/trunk/LayoutTests@36102", |
| 34 | |
| 35 "src/gears/gears": | |
| 36 "http://gears.googlecode.com/svn/trunk/gears@2919", | |
| 37 | |
| 38 "src/gears/third_party": | |
| 39 "http://gears.googlecode.com/svn/trunk/third_party@2919", | |
| 40 } | 34 } |
| 41 | 35 |
| 42 include_rules = [ | 36 include_rules = [ |
| 43 # Everybody can use some things. | 37 # Everybody can use some things. |
| 44 "+base", | 38 "+base", |
| 45 "+build", | 39 "+build", |
| 46 | 40 |
| 47 # For now, we allow ICU to be included by specifying "unicode/...", although | 41 # For now, we allow ICU to be included by specifying "unicode/...", although |
| 48 # this should probably change. | 42 # this should probably change. |
| 49 "+unicode" | 43 "+unicode" |
| 50 ] | 44 ] |
| 51 | 45 |
| 52 # checkdeps.py shouldn't check include paths for files in these dirs: | 46 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 53 skip_child_includes = [ | 47 skip_child_includes = [ |
| 54 "breakpad", | 48 "breakpad", |
| 55 "gears", | |
| 56 "sdch", | 49 "sdch", |
| 57 "skia", | 50 "skia", |
| 58 "testing", | 51 "testing", |
| 59 "third_party", | 52 "third_party", |
| 60 "v8", | 53 "v8", |
| 61 ] | 54 ] |
| OLD | NEW |