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