| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+content/gpu", # For gpu_info_collector.h and in-process GPU | 2 "+content/gpu", # For gpu_info_collector.h and in-process GPU |
| 3 "+content/port/browser", | 3 "+content/port/browser", |
| 4 "+content/public/browser", | 4 "+content/public/browser", |
| 5 "+content/child/webkitplatformsupport_impl.h", # For in-process webkit | 5 "+content/child/webkitplatformsupport_impl.h", # For in-process webkit |
| 6 "+media/audio", # For audio input for speech input feature. | 6 "+media/audio", # For audio input for speech input feature. |
| 7 "+media/base", # For Android JNI registration. | 7 "+media/base", # For Android JNI registration. |
| 8 "+media/midi", # For Web MIDI API | 8 "+media/midi", # For Web MIDI API |
| 9 "+sql", | 9 "+sql", |
| 10 "+ui/webui", | 10 "+ui/webui", |
| 11 "+win8/util", | 11 "+win8/util", |
| 12 | 12 |
| 13 # For single-process mode. | |
| 14 "+content/child/child_process.h", | |
| 15 "+content/utility/utility_thread_impl.h", | |
| 16 | |
| 17 # TODO(joi): This was misplaced; need to move it somewhere else, | 13 # TODO(joi): This was misplaced; need to move it somewhere else, |
| 18 # since //content shouldn't depend on //components, which is a layer | 14 # since //content shouldn't depend on //components, which is a layer |
| 19 # above. | 15 # above. |
| 20 "+components/tracing", | 16 "+components/tracing", |
| 21 | 17 |
| 22 # Other libraries. | 18 # Other libraries. |
| 23 "+third_party/iaccessible2", | 19 "+third_party/iaccessible2", |
| 24 "+third_party/isimpledom", | 20 "+third_party/isimpledom", |
| 25 "+third_party/khronos", # For enum definitions only | 21 "+third_party/khronos", # For enum definitions only |
| 26 "+third_party/speex", | 22 "+third_party/speex", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "+third_party/WebKit/public/web/WebTextDirection.h", | 57 "+third_party/WebKit/public/web/WebTextDirection.h", |
| 62 | 58 |
| 63 # These should be burned down. http://crbug.com/237267 | 59 # These should be burned down. http://crbug.com/237267 |
| 64 "!third_party/WebKit/public/web/gtk/WebInputEventFactory.h", | 60 "!third_party/WebKit/public/web/gtk/WebInputEventFactory.h", |
| 65 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", | 61 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", |
| 66 | 62 |
| 67 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! | 63 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! |
| 68 # See https://sites.google.com/a/chromium.org/dev/developers/content-module | 64 # See https://sites.google.com/a/chromium.org/dev/developers/content-module |
| 69 # for more information. | 65 # for more information. |
| 70 ] | 66 ] |
| OLD | NEW |