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 29 matching lines...) Expand all Loading... |
40 | 40 |
41 | 41 |
42 include_rules = [ | 42 include_rules = [ |
43 # Everybody can use some things. | 43 # Everybody can use some things. |
44 "+base", | 44 "+base", |
45 "+build", | 45 "+build", |
46 | 46 |
47 # For now, we allow ICU to be included by specifying "unicode/...", although | 47 # For now, we allow ICU to be included by specifying "unicode/...", although |
48 # this should probably change. | 48 # this should probably change. |
49 "+unicode", | 49 "+unicode", |
50 '+testing' | 50 "+testing", |
| 51 |
| 52 # Allow anybody to include files from the "public" Skia directory in the |
| 53 # webkit port. This is shared between the webkit port and Chrome. |
| 54 "+webkit/port/platform/graphics/skia/public", |
51 ] | 55 ] |
52 | 56 |
53 | 57 |
54 # checkdeps.py shouldn't check include paths for files in these dirs: | 58 # checkdeps.py shouldn't check include paths for files in these dirs: |
55 skip_child_includes = [ | 59 skip_child_includes = [ |
56 "breakpad", | 60 "breakpad", |
57 "gears", | 61 "gears", |
58 "sdch", | 62 "sdch", |
59 "skia", | 63 "skia", |
60 "testing", | 64 "testing", |
61 "third_party", | 65 "third_party", |
62 "v8", | 66 "v8", |
63 ] | 67 ] |
OLD | NEW |