| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "readback_types.h", | 196 "readback_types.h", |
| 197 "render_frame_host.h", | 197 "render_frame_host.h", |
| 198 "render_process_host.h", | 198 "render_process_host.h", |
| 199 "render_process_host_factory.h", | 199 "render_process_host_factory.h", |
| 200 "render_process_host_observer.h", | 200 "render_process_host_observer.h", |
| 201 "render_view_host.h", | 201 "render_view_host.h", |
| 202 "render_widget_host.h", | 202 "render_widget_host.h", |
| 203 "render_widget_host_view.h", | 203 "render_widget_host_view.h", |
| 204 "render_widget_host_view_mac_delegate.h", | 204 "render_widget_host_view_mac_delegate.h", |
| 205 "resource_context.h", | 205 "resource_context.h", |
| 206 "resource_dispatcher_host.cc", | |
| 207 "resource_dispatcher_host.h", | 206 "resource_dispatcher_host.h", |
| 208 "resource_dispatcher_host_delegate.cc", | 207 "resource_dispatcher_host_delegate.cc", |
| 209 "resource_dispatcher_host_delegate.h", | 208 "resource_dispatcher_host_delegate.h", |
| 210 "resource_dispatcher_host_login_delegate.h", | 209 "resource_dispatcher_host_login_delegate.h", |
| 211 "resource_hints.h", | 210 "resource_hints.h", |
| 212 "resource_request_details.cc", | 211 "resource_request_details.cc", |
| 213 "resource_request_details.h", | 212 "resource_request_details.h", |
| 214 "resource_request_info.h", | 213 "resource_request_info.h", |
| 215 "resource_throttle.cc", | 214 "resource_throttle.cc", |
| 216 "resource_throttle.h", | 215 "resource_throttle.h", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 | 322 |
| 324 if (is_android) { | 323 if (is_android) { |
| 325 deps += [ "//ui/android" ] | 324 deps += [ "//ui/android" ] |
| 326 } | 325 } |
| 327 | 326 |
| 328 if (use_aura) { | 327 if (use_aura) { |
| 329 sources -= [ "context_factory.h" ] | 328 sources -= [ "context_factory.h" ] |
| 330 deps += [ "//ui/aura" ] | 329 deps += [ "//ui/aura" ] |
| 331 } | 330 } |
| 332 } | 331 } |
| OLD | NEW |