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. |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 # In general, //content shouldn't depend on //device. | 25 # In general, //content shouldn't depend on //device. |
26 # This is the an exception. | 26 # This is the an exception. |
27 "+device/udev_linux", # For udev utility and wrapper library. | 27 "+device/udev_linux", # For udev utility and wrapper library. |
28 | 28 |
29 # Other libraries. | 29 # Other libraries. |
30 "+third_party/iaccessible2", | 30 "+third_party/iaccessible2", |
31 "+third_party/isimpledom", | 31 "+third_party/isimpledom", |
32 "+third_party/khronos", # For enum definitions only | 32 "+third_party/khronos", # For enum definitions only |
33 "+third_party/power_gadget", | 33 "+third_party/power_gadget", |
34 "+third_party/speex", | |
35 "+third_party/re2", | 34 "+third_party/re2", |
36 | 35 |
37 # Allow non-browser Chrome OS code to be used. | 36 # Allow non-browser Chrome OS code to be used. |
38 "+chromeos", | 37 "+chromeos", |
39 "+third_party/cros_system_api", | 38 "+third_party/cros_system_api", |
40 | 39 |
41 # No inclusion of WebKit from the browser, other than strictly enum/POD, | 40 # No inclusion of WebKit from the browser, other than strictly enum/POD, |
42 # header-only types, and some selected common code. | 41 # header-only types, and some selected common code. |
43 "-third_party/WebKit", | 42 "-third_party/WebKit", |
44 "+third_party/WebKit/public/platform/WebCircularGeofencingRegion.h", | 43 "+third_party/WebKit/public/platform/WebCircularGeofencingRegion.h", |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 "+third_party/WebKit/public/web/WebTextInputType.h", | 85 "+third_party/WebKit/public/web/WebTextInputType.h", |
87 "+third_party/WebKit/public/web/WebTreeScopeType.h", | 86 "+third_party/WebKit/public/web/WebTreeScopeType.h", |
88 | 87 |
89 # These should be burned down. http://crbug.com/237267 | 88 # These should be burned down. http://crbug.com/237267 |
90 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", | 89 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", |
91 | 90 |
92 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! | 91 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! |
93 # See https://sites.google.com/a/chromium.org/dev/developers/content-module | 92 # See https://sites.google.com/a/chromium.org/dev/developers/content-module |
94 # for more information. | 93 # for more information. |
95 ] | 94 ] |
OLD | NEW |