| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+content/app/strings/grit", # For generated headers | 2 "+content/app/strings/grit", # For generated headers |
| 3 "+content/public/browser", | 3 "+content/public/browser", |
| 4 "+media/audio", # For audio input for speech input feature. | 4 "+media/audio", # For audio input for speech input feature. |
| 5 "+media/base", # For Android JNI registration. | 5 "+media/base", # For Android JNI registration. |
| 6 "+media/midi", # For Web MIDI API | 6 "+media/midi", # For Web MIDI API |
| 7 "+media/video", # For Video Device monitoring in Mac. | 7 "+media/video", # For Video Device monitoring in Mac. |
| 8 "+mojo", | 8 "+mojo", |
| 9 "+sql", | 9 "+sql", |
| 10 "+ui/webui", | 10 "+ui/webui", |
| 11 "+win8/util", | 11 "+win8/util", |
| 12 | 12 |
| 13 # TODO(joi): This was misplaced; need to move it somewhere else, | 13 # TODO(joi): This was misplaced; need to move it somewhere else, |
| 14 # since //content shouldn't depend on //components, which is a layer | 14 # since //content shouldn't depend on //components, which is a layer |
| 15 # above. | 15 # above. |
| 16 "+components/tracing", | 16 "+components/tracing", |
| 17 | 17 |
| 18 # In general, //content shouldn't depend on //device. |
| 19 # This is the an exception. |
| 20 "+device/udev_linux", # For udev utility and wrapper library. |
| 21 |
| 18 # Other libraries. | 22 # Other libraries. |
| 19 "+third_party/iaccessible2", | 23 "+third_party/iaccessible2", |
| 20 "+third_party/isimpledom", | 24 "+third_party/isimpledom", |
| 21 "+third_party/khronos", # For enum definitions only | 25 "+third_party/khronos", # For enum definitions only |
| 22 "+third_party/power_gadget", | 26 "+third_party/power_gadget", |
| 23 "+third_party/speex", | 27 "+third_party/speex", |
| 24 "+third_party/re2", | 28 "+third_party/re2", |
| 25 | 29 |
| 26 # Allow non-browser Chrome OS code to be used. | 30 # Allow non-browser Chrome OS code to be used. |
| 27 "+chromeos", | 31 "+chromeos", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 "+third_party/WebKit/public/web/WebTextDirection.h", | 75 "+third_party/WebKit/public/web/WebTextDirection.h", |
| 72 "+third_party/WebKit/public/web/WebTextInputType.h", | 76 "+third_party/WebKit/public/web/WebTextInputType.h", |
| 73 | 77 |
| 74 # These should be burned down. http://crbug.com/237267 | 78 # These should be burned down. http://crbug.com/237267 |
| 75 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", | 79 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", |
| 76 | 80 |
| 77 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! | 81 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! |
| 78 # See https://sites.google.com/a/chromium.org/dev/developers/content-module | 82 # See https://sites.google.com/a/chromium.org/dev/developers/content-module |
| 79 # for more information. | 83 # for more information. |
| 80 ] | 84 ] |
| OLD | NEW |