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", |
(...skipping 20 matching lines...) Expand all Loading... | |
31 "+gpu/command_buffer/common", | 31 "+gpu/command_buffer/common", |
32 "+gpu/command_buffer/service", | 32 "+gpu/command_buffer/service", |
33 "+gpu/GLES2", | 33 "+gpu/GLES2", |
34 "+third_party/khronos/GLES2", | 34 "+third_party/khronos/GLES2", |
35 | 35 |
36 # For shared USB keycode conversion tables used by ppapi plugin code. | 36 # For shared USB keycode conversion tables used by ppapi plugin code. |
37 "+ui/base/keycodes", | 37 "+ui/base/keycodes", |
38 | 38 |
39 # TODO(brettw) - review these; move up if it's ok, or remove the dependency | 39 # TODO(brettw) - review these; move up if it's ok, or remove the dependency |
40 "+crypto", | 40 "+crypto", |
41 "+net/base", | 41 "+net", |
Ryan Sleevi
2013/03/27 17:21:25
Can you explain why you made this change?
The pre
tony
2013/03/27 19:49:52
I suggested this change. Most of the other cases w
| |
42 "+net/cookies", | |
43 "+net/dns", | |
44 "+net/ftp", | |
45 "+net/http", | |
46 "+net/proxy", | |
47 "+net/ssl", | |
48 "+net/socket", | |
49 "+net/socket_stream", | |
50 "+net/test", | |
51 "+net/url_request", | |
52 "+net/websockets", | |
53 "+third_party/npapi/bindings", | 42 "+third_party/npapi/bindings", |
54 ] | 43 ] |
OLD | NEW |