OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 # See //content/BUILD.gn for how this works. | 7 # See //content/BUILD.gn for how this works. |
8 group("browser") { | 8 group("browser") { |
9 if (is_component_build) { | 9 if (is_component_build) { |
10 public_deps = [ | 10 public_deps = [ |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 "page_navigator.h", | 172 "page_navigator.h", |
173 "pepper_flash_settings_helper.h", | 173 "pepper_flash_settings_helper.h", |
174 "pepper_vpn_provider_resource_host_proxy.h", | 174 "pepper_vpn_provider_resource_host_proxy.h", |
175 "permission_manager.h", | 175 "permission_manager.h", |
176 "permission_type.h", | 176 "permission_type.h", |
177 "platform_notification_context.h", | 177 "platform_notification_context.h", |
178 "platform_notification_service.h", | 178 "platform_notification_service.h", |
179 "plugin_data_remover.h", | 179 "plugin_data_remover.h", |
180 "plugin_service.h", | 180 "plugin_service.h", |
181 "plugin_service_filter.h", | 181 "plugin_service_filter.h", |
| 182 "presentation_connection_message.cc", |
| 183 "presentation_connection_message.h", |
182 "presentation_screen_availability_listener.h", | 184 "presentation_screen_availability_listener.h", |
183 "presentation_service_delegate.h", | 185 "presentation_service_delegate.h", |
184 "presentation_session.cc", | 186 "presentation_session.cc", |
185 "presentation_session.h", | 187 "presentation_session.h", |
186 "presentation_session_message.cc", | |
187 "presentation_session_message.h", | |
188 "profiler_controller.h", | 188 "profiler_controller.h", |
189 "profiler_subscriber.h", | 189 "profiler_subscriber.h", |
190 "provision_fetcher_factory.h", | 190 "provision_fetcher_factory.h", |
191 "provision_fetcher_impl.cc", | 191 "provision_fetcher_impl.cc", |
192 "provision_fetcher_impl.h", | 192 "provision_fetcher_impl.h", |
193 "push_messaging_service.cc", | 193 "push_messaging_service.cc", |
194 "push_messaging_service.h", | 194 "push_messaging_service.h", |
195 "quota_permission_context.h", | 195 "quota_permission_context.h", |
196 "readback_types.h", | 196 "readback_types.h", |
197 "render_frame_host.h", | 197 "render_frame_host.h", |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 | 326 |
327 if (is_android) { | 327 if (is_android) { |
328 deps += [ "//ui/android" ] | 328 deps += [ "//ui/android" ] |
329 } | 329 } |
330 | 330 |
331 if (use_aura) { | 331 if (use_aura) { |
332 sources -= [ "context_factory.h" ] | 332 sources -= [ "context_factory.h" ] |
333 deps += [ "//ui/aura" ] | 333 deps += [ "//ui/aura" ] |
334 } | 334 } |
335 } | 335 } |
OLD | NEW |