| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "javascript_dialog_manager.cc", | 133 "javascript_dialog_manager.cc", |
| 134 "javascript_dialog_manager.h", | 134 "javascript_dialog_manager.h", |
| 135 "load_notification_details.h", | 135 "load_notification_details.h", |
| 136 "local_storage_usage_info.h", | 136 "local_storage_usage_info.h", |
| 137 "media_capture_devices.h", | 137 "media_capture_devices.h", |
| 138 "media_device_id.cc", | 138 "media_device_id.cc", |
| 139 "media_device_id.h", | 139 "media_device_id.h", |
| 140 "media_session.h", | 140 "media_session.h", |
| 141 "media_session_observer.cc", | 141 "media_session_observer.cc", |
| 142 "media_session_observer.h", | 142 "media_session_observer.h", |
| 143 "memory_coordinator.h", |
| 143 "memory_coordinator_delegate.h", | 144 "memory_coordinator_delegate.h", |
| 144 "memory_pressure_controller.cc", | 145 "memory_pressure_controller.cc", |
| 145 "memory_pressure_controller.h", | 146 "memory_pressure_controller.h", |
| 146 "message_port_delegate.h", | 147 "message_port_delegate.h", |
| 147 "message_port_provider.h", | 148 "message_port_provider.h", |
| 148 "native_web_keyboard_event.h", | 149 "native_web_keyboard_event.h", |
| 149 "navigation_controller.cc", | 150 "navigation_controller.cc", |
| 150 "navigation_controller.h", | 151 "navigation_controller.h", |
| 151 "navigation_data.h", | 152 "navigation_data.h", |
| 152 "navigation_details.cc", | 153 "navigation_details.cc", |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 | 328 |
| 328 if (is_android) { | 329 if (is_android) { |
| 329 deps += [ "//ui/android" ] | 330 deps += [ "//ui/android" ] |
| 330 } | 331 } |
| 331 | 332 |
| 332 if (use_aura) { | 333 if (use_aura) { |
| 333 sources -= [ "context_factory.h" ] | 334 sources -= [ "context_factory.h" ] |
| 334 deps += [ "//ui/aura" ] | 335 deps += [ "//ui/aura" ] |
| 335 } | 336 } |
| 336 } | 337 } |
| OLD | NEW |