| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 "interstitial_page_delegate.cc", | 127 "interstitial_page_delegate.cc", |
| 128 "interstitial_page_delegate.h", | 128 "interstitial_page_delegate.h", |
| 129 "invalidate_type.h", | 129 "invalidate_type.h", |
| 130 "javascript_dialog_manager.cc", | 130 "javascript_dialog_manager.cc", |
| 131 "javascript_dialog_manager.h", | 131 "javascript_dialog_manager.h", |
| 132 "load_notification_details.h", | 132 "load_notification_details.h", |
| 133 "local_storage_usage_info.h", | 133 "local_storage_usage_info.h", |
| 134 "media_capture_devices.h", | 134 "media_capture_devices.h", |
| 135 "media_device_id.cc", | 135 "media_device_id.cc", |
| 136 "media_device_id.h", | 136 "media_device_id.h", |
| 137 "memory_coordinator_delegate.h", |
| 137 "memory_pressure_controller.cc", | 138 "memory_pressure_controller.cc", |
| 138 "memory_pressure_controller.h", | 139 "memory_pressure_controller.h", |
| 139 "message_port_delegate.h", | 140 "message_port_delegate.h", |
| 140 "message_port_provider.h", | 141 "message_port_provider.h", |
| 141 "native_web_keyboard_event.h", | 142 "native_web_keyboard_event.h", |
| 142 "navigation_controller.cc", | 143 "navigation_controller.cc", |
| 143 "navigation_controller.h", | 144 "navigation_controller.h", |
| 144 "navigation_data.h", | 145 "navigation_data.h", |
| 145 "navigation_details.cc", | 146 "navigation_details.cc", |
| 146 "navigation_details.h", | 147 "navigation_details.h", |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 | 315 |
| 315 if (is_android) { | 316 if (is_android) { |
| 316 deps += [ "//ui/android" ] | 317 deps += [ "//ui/android" ] |
| 317 } | 318 } |
| 318 | 319 |
| 319 if (use_aura) { | 320 if (use_aura) { |
| 320 sources -= [ "context_factory.h" ] | 321 sources -= [ "context_factory.h" ] |
| 321 deps += [ "//ui/aura" ] | 322 deps += [ "//ui/aura" ] |
| 322 } | 323 } |
| 323 } | 324 } |
| OLD | NEW |