| 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 "+components/url_formatter", | 7 "+components/url_formatter", |
| 8 | 8 |
| 9 "+content/app/strings/grit", # For generated headers | 9 "+content/app/strings/grit", # For generated headers |
| 10 "+content/public/browser", | 10 "+content/public/browser", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "+device/udev_linux", # For udev utility and wrapper library. | 28 "+device/udev_linux", # For udev utility and wrapper library. |
| 29 | 29 |
| 30 # Explicitly disallow using SyncMessageFilter to prevent browser from | 30 # Explicitly disallow using SyncMessageFilter to prevent browser from |
| 31 # sending synchronous IPC messages on non-UI threads. | 31 # sending synchronous IPC messages on non-UI threads. |
| 32 "-ipc/ipc_sync_message_filter.h", | 32 "-ipc/ipc_sync_message_filter.h", |
| 33 | 33 |
| 34 # Other libraries. | 34 # Other libraries. |
| 35 "+third_party/iaccessible2", | 35 "+third_party/iaccessible2", |
| 36 "+third_party/isimpledom", | 36 "+third_party/isimpledom", |
| 37 "+third_party/khronos", # For enum definitions only | 37 "+third_party/khronos", # For enum definitions only |
| 38 "+third_party/openh264", |
| 38 "+third_party/re2", | 39 "+third_party/re2", |
| 39 | 40 |
| 40 # Allow non-browser Chrome OS code to be used. | 41 # Allow non-browser Chrome OS code to be used. |
| 41 "+chromeos", | 42 "+chromeos", |
| 42 "+third_party/cros_system_api", | 43 "+third_party/cros_system_api", |
| 43 | 44 |
| 44 # No inclusion of WebKit from the browser, other than strictly enum/POD, | 45 # No inclusion of WebKit from the browser, other than strictly enum/POD, |
| 45 # header-only types, and some selected common code. | 46 # header-only types, and some selected common code. |
| 46 "-third_party/WebKit", | 47 "-third_party/WebKit", |
| 47 "+third_party/WebKit/public/platform/WebCircularGeofencingRegion.h", | 48 "+third_party/WebKit/public/platform/WebCircularGeofencingRegion.h", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "+third_party/WebKit/public/web/WebSerializedScriptValueVersion.h", | 87 "+third_party/WebKit/public/web/WebSerializedScriptValueVersion.h", |
| 87 "+third_party/WebKit/public/web/WebTextDirection.h", | 88 "+third_party/WebKit/public/web/WebTextDirection.h", |
| 88 "+third_party/WebKit/public/web/WebTextInputType.h", | 89 "+third_party/WebKit/public/web/WebTextInputType.h", |
| 89 "+third_party/WebKit/public/web/WebTreeScopeType.h", | 90 "+third_party/WebKit/public/web/WebTreeScopeType.h", |
| 90 "+third_party/WebKit/public/web/mac/WebScrollbarTheme.h", | 91 "+third_party/WebKit/public/web/mac/WebScrollbarTheme.h", |
| 91 | 92 |
| 92 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! | 93 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! |
| 93 # See https://sites.google.com/a/chromium.org/dev/developers/content-module | 94 # See https://sites.google.com/a/chromium.org/dev/developers/content-module |
| 94 # for more information. | 95 # for more information. |
| 95 ] | 96 ] |
| OLD | NEW |