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