| 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 "+cc", | 11 "+cc", |
| 12 "+grit", # For generated headers | 12 "+grit", # For generated headers |
| 13 "+skia", | 13 "+skia", |
| 14 "+third_party/angle", | 14 "+third_party/angle", |
| 15 "+third_party/hyphen", |
| 15 "+third_party/leveldatabase", | 16 "+third_party/leveldatabase", |
| 16 "+third_party/skia", | 17 "+third_party/skia", |
| 17 "+third_party/sqlite", | 18 "+third_party/sqlite", |
| 18 "+third_party/tcmalloc", | 19 "+third_party/tcmalloc", |
| 19 "+third_party/WebKit/Source/Platform/chromium", | 20 "+third_party/WebKit/Source/Platform/chromium", |
| 20 "+third_party/WebKit/Source/WebKit/chromium", | 21 "+third_party/WebKit/Source/WebKit/chromium", |
| 21 "+v8", | 22 "+v8", |
| 22 | 23 |
| 23 # For databases/ | 24 # For databases/ |
| 24 "+sql", | 25 "+sql", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 41 "+net/ftp", | 42 "+net/ftp", |
| 42 "+net/http", | 43 "+net/http", |
| 43 "+net/proxy", | 44 "+net/proxy", |
| 44 "+net/socket", | 45 "+net/socket", |
| 45 "+net/socket_stream", | 46 "+net/socket_stream", |
| 46 "+net/test", | 47 "+net/test", |
| 47 "+net/url_request", | 48 "+net/url_request", |
| 48 "+net/websockets", | 49 "+net/websockets", |
| 49 "+third_party/npapi/bindings", | 50 "+third_party/npapi/bindings", |
| 50 ] | 51 ] |
| OLD | NEW |