| 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 "cookie_store_factory.h", | 85 "cookie_store_factory.h", |
| 86 "desktop_media_id.cc", | 86 "desktop_media_id.cc", |
| 87 "desktop_media_id.h", | 87 "desktop_media_id.h", |
| 88 "desktop_notification_delegate.h", | 88 "desktop_notification_delegate.h", |
| 89 "devtools_agent_host.h", | 89 "devtools_agent_host.h", |
| 90 "devtools_agent_host_client.h", | 90 "devtools_agent_host_client.h", |
| 91 "devtools_agent_host_observer.cc", | 91 "devtools_agent_host_observer.cc", |
| 92 "devtools_agent_host_observer.h", | 92 "devtools_agent_host_observer.h", |
| 93 "devtools_external_agent_proxy.h", | 93 "devtools_external_agent_proxy.h", |
| 94 "devtools_external_agent_proxy_delegate.h", | 94 "devtools_external_agent_proxy_delegate.h", |
| 95 "devtools_frontend_host.h", | |
| 96 "devtools_manager_delegate.cc", | 95 "devtools_manager_delegate.cc", |
| 97 "devtools_manager_delegate.h", | 96 "devtools_manager_delegate.h", |
| 98 "devtools_socket_factory.h", | 97 "devtools_socket_factory.h", |
| 99 "dom_storage_context.h", | 98 "dom_storage_context.h", |
| 100 "download_danger_type.h", | 99 "download_danger_type.h", |
| 101 "download_interrupt_reason_values.h", | 100 "download_interrupt_reason_values.h", |
| 102 "download_interrupt_reasons.h", | 101 "download_interrupt_reasons.h", |
| 103 "download_item.h", | 102 "download_item.h", |
| 104 "download_manager.h", | 103 "download_manager.h", |
| 105 "download_manager_delegate.cc", | 104 "download_manager_delegate.cc", |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 ] | 321 ] |
| 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 } |
| 331 |
| 332 if (!is_android) { |
| 333 sources += [ "devtools_frontend_host.h" ] |
| 334 } |
| 332 } | 335 } |
| OLD | NEW |