Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 include_rules = [ | 1 include_rules = [ |
| 2 # Allow inclusion of specific components that we depend on. We may only | 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. | 3 # depend on components which we share with the mojo html_viewer. |
| 4 "+components/mime_util", | 4 "+components/mime_util", |
| 5 "+components/scheduler/common", | 5 "+components/scheduler/common", |
| 6 "+components/tracing", | 6 "+components/tracing", |
| 7 | 7 |
| 8 "+content/app/strings/grit", # For generated headers | 8 "+content/app/strings/grit", # For generated headers |
| 9 "+content/public/browser", | 9 "+content/public/browser", |
| 10 "+device/battery", # For battery status service. | 10 "+device/battery", # For battery status service. |
| 11 "+device/vibration", # For Vibration API | 11 "+device/vibration", # For Vibration API |
| 12 "+media/audio", # For audio input for speech input feature. | 12 "+media/audio", # For audio input for speech input feature. |
| 13 "+media/base", # For Android JNI registration. | 13 "+media/base", # For Android JNI registration. |
| 14 "+media/filters", # For reporting GPU decoding UMA. | 14 "+media/filters", # For reporting GPU decoding UMA. |
| 15 "+media/midi", # For Web MIDI API | 15 "+media/midi", # For Web MIDI API |
| 16 "+media/mojo", # For mojo media services. | 16 "+media/mojo", # For mojo media services. |
| 17 "+media/video", # For Video Device monitoring in Mac. | 17 "+media/video", # For Video Device monitoring in Mac. |
| 18 "+mojo", | 18 "+mojo", |
| 19 "+sql", | 19 "+sql", |
| 20 "+ui/aura_extra", | 20 "+ui/aura_extra", |
| 21 "+ui/webui", | 21 "+ui/webui", |
| 22 "+webui", | |
|
davidben
2015/05/09 00:31:05
Why is this line needed? (I don't even see a //web
Evan Stade
2015/05/09 00:57:00
yea, I don't think it helps. It was supposed to re
| |
| 22 "+win8/util", | 23 "+win8/util", |
| 23 | 24 |
| 24 # In general, //content shouldn't depend on //device. | 25 # In general, //content shouldn't depend on //device. |
| 25 # This is the an exception. | 26 # This is the an exception. |
| 26 "+device/udev_linux", # For udev utility and wrapper library. | 27 "+device/udev_linux", # For udev utility and wrapper library. |
| 27 | 28 |
| 28 # Other libraries. | 29 # Other libraries. |
| 29 "+third_party/iaccessible2", | 30 "+third_party/iaccessible2", |
| 30 "+third_party/isimpledom", | 31 "+third_party/isimpledom", |
| 31 "+third_party/khronos", # For enum definitions only | 32 "+third_party/khronos", # For enum definitions only |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 81 "+third_party/WebKit/public/web/WebTextDirection.h", | 82 "+third_party/WebKit/public/web/WebTextDirection.h", |
| 82 "+third_party/WebKit/public/web/WebTextInputType.h", | 83 "+third_party/WebKit/public/web/WebTextInputType.h", |
| 83 | 84 |
| 84 # These should be burned down. http://crbug.com/237267 | 85 # These should be burned down. http://crbug.com/237267 |
| 85 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", | 86 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", |
| 86 | 87 |
| 87 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! | 88 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! |
| 88 # 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 |
| 89 # for more information. | 90 # for more information. |
| 90 ] | 91 ] |
| OLD | NEW |