| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+chrome/app", | 2 "+chrome/app", |
| 3 "+chrome/app/locales", | 3 "+chrome/app/locales", |
| 4 "+chrome/installer", | 4 "+chrome/installer", |
| 5 "+chrome/personalization", | 5 "+chrome/personalization", |
| 6 "+chrome/plugin", # For Mac plugin interpose library. | 6 "+chrome/plugin", # For Mac plugin interpose library. |
| 7 "+chrome/tools/profiles", # For history unit tests. | 7 "+chrome/tools/profiles", # For history unit tests. |
| 8 "+chrome/views", | 8 "+chrome/views", |
| 9 "+grit", # For generated headers | 9 "+grit", # For generated headers |
| 10 "+sandbox/src", | 10 "+sandbox/src", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "+media/base", | 21 "+media/base", |
| 22 "+third_party/sqlite", | 22 "+third_party/sqlite", |
| 23 "+third_party/libevent", # For the remote V8 debugging server | 23 "+third_party/libevent", # For the remote V8 debugging server |
| 24 "+third_party/cld", | 24 "+third_party/cld", |
| 25 "+v8/include", # Browser uses V8 to get the version and run the debugger. | 25 "+v8/include", # Browser uses V8 to get the version and run the debugger. |
| 26 | 26 |
| 27 # FIXME: this should probably not be here, we need to find a better | 27 # FIXME: this should probably not be here, we need to find a better |
| 28 # structure for these includes. | 28 # structure for these includes. |
| 29 "+chrome/renderer", | 29 "+chrome/renderer", |
| 30 ] | 30 ] |
| 31 |
| 32 # checkdeps needs to skip geolocation as it is unmodified gears code. |
| 33 # TODO(joth): remove in next patch when this code is ported to chromium. |
| 34 skip_child_includes = [ |
| 35 "geolocation" |
| 36 ] |
| OLD | NEW |