OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
| 2 # Allow inclusion of specific components that we depend on. We may only |
| 3 # depend on components which we share with the mojo html_viewer. |
| 4 "+components/scheduler/common", |
| 5 "+components/tracing", |
| 6 |
2 "+content/app/strings/grit", # For generated headers | 7 "+content/app/strings/grit", # For generated headers |
3 "+content/public/browser", | 8 "+content/public/browser", |
4 "+device/battery", # For battery status service. | 9 "+device/battery", # For battery status service. |
5 "+device/vibration", # For Vibration API | 10 "+device/vibration", # For Vibration API |
6 "+media/audio", # For audio input for speech input feature. | 11 "+media/audio", # For audio input for speech input feature. |
7 "+media/base", # For Android JNI registration. | 12 "+media/base", # For Android JNI registration. |
8 "+media/filters", # For reporting GPU decoding UMA. | 13 "+media/filters", # For reporting GPU decoding UMA. |
9 "+media/midi", # For Web MIDI API | 14 "+media/midi", # For Web MIDI API |
10 "+media/mojo", # For mojo media services. | 15 "+media/mojo", # For mojo media services. |
11 "+media/video", # For Video Device monitoring in Mac. | 16 "+media/video", # For Video Device monitoring in Mac. |
12 "+mojo", | 17 "+mojo", |
13 "+sql", | 18 "+sql", |
14 "+ui/aura_extra", | 19 "+ui/aura_extra", |
15 "+ui/webui", | 20 "+ui/webui", |
16 "+win8/util", | 21 "+win8/util", |
17 | 22 |
18 # TODO(joi): This was misplaced; need to move it somewhere else, | |
19 # since //content shouldn't depend on //components, which is a layer | |
20 # above. | |
21 "+components/tracing", | |
22 | |
23 # In general, //content shouldn't depend on //device. | 23 # In general, //content shouldn't depend on //device. |
24 # This is the an exception. | 24 # This is the an exception. |
25 "+device/udev_linux", # For udev utility and wrapper library. | 25 "+device/udev_linux", # For udev utility and wrapper library. |
26 | 26 |
27 # Other libraries. | 27 # Other libraries. |
28 "+third_party/iaccessible2", | 28 "+third_party/iaccessible2", |
29 "+third_party/isimpledom", | 29 "+third_party/isimpledom", |
30 "+third_party/khronos", # For enum definitions only | 30 "+third_party/khronos", # For enum definitions only |
31 "+third_party/power_gadget", | 31 "+third_party/power_gadget", |
32 "+third_party/speex", | 32 "+third_party/speex", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 "+third_party/WebKit/public/web/WebTextDirection.h", | 82 "+third_party/WebKit/public/web/WebTextDirection.h", |
83 "+third_party/WebKit/public/web/WebTextInputType.h", | 83 "+third_party/WebKit/public/web/WebTextInputType.h", |
84 | 84 |
85 # These should be burned down. http://crbug.com/237267 | 85 # These should be burned down. http://crbug.com/237267 |
86 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", | 86 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", |
87 | 87 |
88 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! | 88 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! |
89 # See https://sites.google.com/a/chromium.org/dev/developers/content-module | 89 # See https://sites.google.com/a/chromium.org/dev/developers/content-module |
90 # for more information. | 90 # for more information. |
91 ] | 91 ] |
OLD | NEW |