| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 "local_storage_usage_info.h", | 142 "local_storage_usage_info.h", |
| 143 "media_capture_devices.h", | 143 "media_capture_devices.h", |
| 144 "media_device_id.cc", | 144 "media_device_id.cc", |
| 145 "media_device_id.h", | 145 "media_device_id.h", |
| 146 "media_request_state.h", | 146 "media_request_state.h", |
| 147 "media_session.h", | 147 "media_session.h", |
| 148 "media_session_observer.cc", | 148 "media_session_observer.cc", |
| 149 "media_session_observer.h", | 149 "media_session_observer.h", |
| 150 "memory_coordinator.h", | 150 "memory_coordinator.h", |
| 151 "memory_coordinator_delegate.h", | 151 "memory_coordinator_delegate.h", |
| 152 "memory_pressure_controller.cc", | |
| 153 "memory_pressure_controller.h", | |
| 154 "message_port_provider.h", | 152 "message_port_provider.h", |
| 155 "mhtml_extra_parts.h", | 153 "mhtml_extra_parts.h", |
| 156 "native_web_keyboard_event.h", | 154 "native_web_keyboard_event.h", |
| 157 "navigation_controller.cc", | 155 "navigation_controller.cc", |
| 158 "navigation_controller.h", | 156 "navigation_controller.h", |
| 159 "navigation_data.h", | 157 "navigation_data.h", |
| 160 "navigation_details.cc", | 158 "navigation_details.cc", |
| 161 "navigation_details.h", | 159 "navigation_details.h", |
| 162 "navigation_entry.h", | 160 "navigation_entry.h", |
| 163 "navigation_handle.cc", | 161 "navigation_handle.cc", |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 | 336 |
| 339 if (use_aura) { | 337 if (use_aura) { |
| 340 sources -= [ "context_factory.h" ] | 338 sources -= [ "context_factory.h" ] |
| 341 deps += [ "//ui/aura" ] | 339 deps += [ "//ui/aura" ] |
| 342 } | 340 } |
| 343 | 341 |
| 344 if (!is_android) { | 342 if (!is_android) { |
| 345 sources += [ "devtools_frontend_host.h" ] | 343 sources += [ "devtools_frontend_host.h" ] |
| 346 } | 344 } |
| 347 } | 345 } |
| OLD | NEW |