OLD | NEW |
1 # checkdeps.py shouldn't check include paths for files in these dirs: | 1 # checkdeps.py shouldn't check include paths for files in these dirs: |
2 skip_child_includes = [ | 2 skip_child_includes = [ |
3 "build", | 3 "build", |
4 ] | 4 ] |
5 | 5 |
6 # Do NOT add chrome to the list below. We shouldn't be including files from | 6 # Do NOT add chrome to the list below. We shouldn't be including files from |
7 # src/chrome in src/webkit. | 7 # src/chrome in src/webkit. |
8 include_rules = [ | 8 include_rules = [ |
9 # For bridge/c/c_utility.h in npruntime_util.cc | 9 # For bridge/c/c_utility.h in npruntime_util.cc |
10 "+bridge", | 10 "+bridge", |
11 "+grit", # For generated headers | 11 "+grit", # For generated headers |
12 "+skia", | 12 "+skia", |
| 13 "+third_party/angle", |
| 14 "+third_party/leveldatabase", |
| 15 "+third_party/skia", |
13 "+third_party/sqlite", | 16 "+third_party/sqlite", |
14 "+third_party/tcmalloc", | 17 "+third_party/tcmalloc", |
| 18 "+third_party/WebKit/Source/Platform/chromium", |
| 19 "+third_party/WebKit/Source/WebKit/chromium", |
| 20 "+v8", |
15 | 21 |
16 # For databases/ | 22 # For databases/ |
17 "+sql", | 23 "+sql", |
18 | 24 |
19 # For gpu/ | 25 # For gpu/ |
20 "+ui/gfx", | 26 "+ui/gfx", |
21 "+gpu/command_buffer/client", | 27 "+gpu/command_buffer/client", |
22 "+gpu/command_buffer/common", | 28 "+gpu/command_buffer/common", |
23 "+gpu/command_buffer/service", | 29 "+gpu/command_buffer/service", |
24 "+third_party/khronos/GLES2", | 30 "+third_party/khronos/GLES2", |
25 | 31 |
26 # TODO(brettw) - review these; move up if it's ok, or remove the dependency | 32 # TODO(brettw) - review these; move up if it's ok, or remove the dependency |
27 "+crypto", | 33 "+crypto", |
28 "+net/base", | 34 "+net/base", |
29 "+net/cookies", | 35 "+net/cookies", |
30 "+net/ftp", | 36 "+net/ftp", |
31 "+net/http", | 37 "+net/http", |
32 "+net/proxy", | 38 "+net/proxy", |
33 "+net/socket", | 39 "+net/socket", |
34 "+net/socket_stream", | 40 "+net/socket_stream", |
35 "+net/test", | 41 "+net/test", |
36 "+net/url_request", | 42 "+net/url_request", |
37 "+net/websockets", | 43 "+net/websockets", |
38 "+third_party/npapi/bindings", | 44 "+third_party/npapi/bindings", |
39 ] | 45 ] |
OLD | NEW |