| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 "payment_app_provider.h", | 175 "payment_app_provider.h", |
| 176 "pepper_flash_settings_helper.h", | 176 "pepper_flash_settings_helper.h", |
| 177 "pepper_vpn_provider_resource_host_proxy.h", | 177 "pepper_vpn_provider_resource_host_proxy.h", |
| 178 "permission_manager.h", | 178 "permission_manager.h", |
| 179 "permission_type.h", | 179 "permission_type.h", |
| 180 "platform_notification_context.h", | 180 "platform_notification_context.h", |
| 181 "platform_notification_service.h", | 181 "platform_notification_service.h", |
| 182 "plugin_data_remover.h", | 182 "plugin_data_remover.h", |
| 183 "plugin_service.h", | 183 "plugin_service.h", |
| 184 "plugin_service_filter.h", | 184 "plugin_service_filter.h", |
| 185 "presentation_connection_message.cc", | |
| 186 "presentation_connection_message.h", | |
| 187 "presentation_screen_availability_listener.h", | 185 "presentation_screen_availability_listener.h", |
| 188 "presentation_service_delegate.h", | 186 "presentation_service_delegate.h", |
| 189 "presentation_session.cc", | |
| 190 "presentation_session.h", | |
| 191 "profiler_controller.h", | 187 "profiler_controller.h", |
| 192 "profiler_subscriber.h", | 188 "profiler_subscriber.h", |
| 193 "provision_fetcher_factory.h", | 189 "provision_fetcher_factory.h", |
| 194 "provision_fetcher_impl.cc", | 190 "provision_fetcher_impl.cc", |
| 195 "provision_fetcher_impl.h", | 191 "provision_fetcher_impl.h", |
| 196 "push_messaging_service.cc", | 192 "push_messaging_service.cc", |
| 197 "push_messaging_service.h", | 193 "push_messaging_service.h", |
| 198 "quota_permission_context.h", | 194 "quota_permission_context.h", |
| 199 "readback_types.h", | 195 "readback_types.h", |
| 200 "render_frame_host.h", | 196 "render_frame_host.h", |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 | 325 |
| 330 if (is_android) { | 326 if (is_android) { |
| 331 deps += [ "//ui/android" ] | 327 deps += [ "//ui/android" ] |
| 332 } | 328 } |
| 333 | 329 |
| 334 if (use_aura) { | 330 if (use_aura) { |
| 335 sources -= [ "context_factory.h" ] | 331 sources -= [ "context_factory.h" ] |
| 336 deps += [ "//ui/aura" ] | 332 deps += [ "//ui/aura" ] |
| 337 } | 333 } |
| 338 } | 334 } |
| OLD | NEW |