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/network_session_configurator/switches.h", | 10 "+components/network_session_configurator/switches.h", |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 | 107 |
108 # Until we define where mojo interfaces should live in blink we whitelist each | 108 # Until we define where mojo interfaces should live in blink we whitelist each |
109 # one separately. | 109 # one separately. |
110 "+third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.mojom.h", | 110 "+third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.mojom.h", |
111 "+third_party/WebKit/public/platform/modules/notifications/notification_servic
e.mojom.h", | 111 "+third_party/WebKit/public/platform/modules/notifications/notification_servic
e.mojom.h", |
112 | 112 |
113 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! | 113 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! |
114 # See https://sites.google.com/a/chromium.org/dev/developers/content-module | 114 # See https://sites.google.com/a/chromium.org/dev/developers/content-module |
115 # for more information. | 115 # for more information. |
116 ] | 116 ] |
117 | |
118 specific_include_rules = { | |
119 # See https://crbug.com/612337. | |
120 "(power_save_blocker_android\.cc" | |
121 "|power_save_blocker_android\.h" | |
122 "|power_save_blocker_chromeos\.cc" | |
123 "|power_save_blocker_impl\.cc" | |
124 "|power_save_blocker_impl\.h" | |
125 "|power_save_blocker_mac\.cc" | |
126 "|power_save_blocker_ozone\.cc" | |
127 "|power_save_blocker_win\.cc" | |
128 "|power_save_blocker_x11\.cc" | |
129 ")": [ | |
130 "-content", | |
131 | |
132 # These will move to //device/power_save_blocker. | |
133 "+content/browser/power_save_blocker_impl.h", | |
134 "+content/public/browser/power_save_blocker.h", | |
135 ], | |
136 } | |
OLD | NEW |