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/sqlite", | 13 "+third_party/sqlite", |
14 "+third_party/tcmalloc", | 14 "+third_party/tcmalloc", |
15 "+ui/gfx", | 15 "+ui/gfx", |
16 | 16 |
17 # For databases/ | 17 # For databases/ |
18 "+app/sql", | 18 "+sql", |
19 | 19 |
20 # For gpu/ | 20 # For gpu/ |
21 "+app/gfx", | 21 "+ui/gfx", |
22 "+gpu/command_buffer/client", | 22 "+gpu/command_buffer/client", |
23 "+gpu/command_buffer/common", | 23 "+gpu/command_buffer/common", |
24 "+gpu/command_buffer/service", | 24 "+gpu/command_buffer/service", |
25 "+gpu/GLES2", | 25 "+gpu/GLES2", |
26 | 26 |
27 # TODO(brettw) - review these; move up if it's ok, or remove the dependency | 27 # TODO(brettw) - review these; move up if it's ok, or remove the dependency |
28 "+crypto", | 28 "+crypto", |
29 "+net/base", | 29 "+net/base", |
30 "+net/ftp", | 30 "+net/ftp", |
31 "+net/http", | 31 "+net/http", |
32 "+net/proxy", | 32 "+net/proxy", |
33 "+net/socket", | 33 "+net/socket", |
34 "+net/socket_stream", | 34 "+net/socket_stream", |
35 "+net/test", | 35 "+net/test", |
36 "+net/url_request", | 36 "+net/url_request", |
37 "+net/websockets", | 37 "+net/websockets", |
38 "+ppapi/cpp", | 38 "+ppapi/cpp", |
39 "+third_party/npapi/bindings", | 39 "+third_party/npapi/bindings", |
40 ] | 40 ] |
OLD | NEW |