| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "context_factory.h", | 85 "context_factory.h", |
| 86 "cookie_store_factory.h", | 86 "cookie_store_factory.h", |
| 87 "desktop_media_id.cc", | 87 "desktop_media_id.cc", |
| 88 "desktop_media_id.h", | 88 "desktop_media_id.h", |
| 89 "desktop_notification_delegate.h", | 89 "desktop_notification_delegate.h", |
| 90 "devtools_agent_host.h", | 90 "devtools_agent_host.h", |
| 91 "devtools_agent_host_client.h", | 91 "devtools_agent_host_client.h", |
| 92 "devtools_external_agent_proxy.h", | 92 "devtools_external_agent_proxy.h", |
| 93 "devtools_external_agent_proxy_delegate.h", | 93 "devtools_external_agent_proxy_delegate.h", |
| 94 "devtools_frontend_host.h", | 94 "devtools_frontend_host.h", |
| 95 "devtools_manager_delegate.cc", |
| 95 "devtools_manager_delegate.h", | 96 "devtools_manager_delegate.h", |
| 96 "devtools_socket_factory.h", | 97 "devtools_socket_factory.h", |
| 97 "dom_storage_context.h", | 98 "dom_storage_context.h", |
| 98 "download_danger_type.h", | 99 "download_danger_type.h", |
| 99 "download_interrupt_reason_values.h", | 100 "download_interrupt_reason_values.h", |
| 100 "download_interrupt_reasons.h", | 101 "download_interrupt_reasons.h", |
| 101 "download_item.h", | 102 "download_item.h", |
| 102 "download_manager.h", | 103 "download_manager.h", |
| 103 "download_manager_delegate.cc", | 104 "download_manager_delegate.cc", |
| 104 "download_manager_delegate.h", | 105 "download_manager_delegate.h", |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 | 308 |
| 308 if (is_android) { | 309 if (is_android) { |
| 309 deps += [ "//ui/android" ] | 310 deps += [ "//ui/android" ] |
| 310 } | 311 } |
| 311 | 312 |
| 312 if (use_aura) { | 313 if (use_aura) { |
| 313 sources -= [ "context_factory.h" ] | 314 sources -= [ "context_factory.h" ] |
| 314 deps += [ "//ui/aura" ] | 315 deps += [ "//ui/aura" ] |
| 315 } | 316 } |
| 316 } | 317 } |
| OLD | NEW |