| 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 25 matching lines...) Expand all Loading... |
| 36 "+third_party/khronos/GLES2", | 36 "+third_party/khronos/GLES2", |
| 37 | 37 |
| 38 # TODO(brettw) - review these; move up if it's ok, or remove the dependency | 38 # TODO(brettw) - review these; move up if it's ok, or remove the dependency |
| 39 "+net", | 39 "+net", |
| 40 "+third_party/npapi/bindings", | 40 "+third_party/npapi/bindings", |
| 41 | 41 |
| 42 # webkit/support is only test support code, nothing outside of webkit/support | 42 # webkit/support is only test support code, nothing outside of webkit/support |
| 43 # should pull it in. | 43 # should pull it in. |
| 44 "-webkit/support", | 44 "-webkit/support", |
| 45 ] | 45 ] |
| OLD | NEW |