| 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/filesystem", | 4 "+components/filesystem", |
| 5 "+components/leveldb", | 5 "+components/leveldb", |
| 6 "+components/link_header_util", | 6 "+components/link_header_util", |
| 7 "+components/mime_util", | 7 "+components/mime_util", |
| 8 "+components/mus/public/interfaces", | 8 "+components/mus/public/interfaces", |
| 9 "+components/mus/public", | 9 "+components/mus/public", |
| 10 "+components/profile_service", | 10 "+components/profile_service", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 | 102 |
| 103 # Until we define where mojo interfaces should live in blink we whitelist each | 103 # Until we define where mojo interfaces should live in blink we whitelist each |
| 104 # one separately. | 104 # one separately. |
| 105 "+third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.mojom.h", | 105 "+third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.mojom.h", |
| 106 "+third_party/WebKit/public/platform/modules/vr/vr_service.mojom.h" | 106 "+third_party/WebKit/public/platform/modules/vr/vr_service.mojom.h" |
| 107 | 107 |
| 108 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! | 108 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! |
| 109 # See https://sites.google.com/a/chromium.org/dev/developers/content-module | 109 # See https://sites.google.com/a/chromium.org/dev/developers/content-module |
| 110 # for more information. | 110 # for more information. |
| 111 ] | 111 ] |
| 112 |
| 113 specific_include_rules = { |
| 114 # See https://crbug.com/612337. |
| 115 "power_save_blocker.*\.(cc|h)": [ |
| 116 "-content", |
| 117 |
| 118 # These will move to //device/power_save_blocker. |
| 119 "+content/browser/power_save_blocker_impl.h", |
| 120 "+content/public/browser/power_save_blocker.h", |
| 121 |
| 122 # These dependencies need to be removed. |
| 123 "!content/browser/android/content_view_core_impl.h", |
| 124 "!content/browser/web_contents/web_contents_impl.h", |
| 125 "!content/public/browser/android/content_view_core.h", |
| 126 "!content/public/browser/browser_thread.h", |
| 127 "!content/public/browser/web_contents_observer.h", |
| 128 ] |
| 129 } |
| OLD | NEW |