| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "color_chooser.h", | 80 "color_chooser.h", |
| 81 "content_browser_client.cc", | 81 "content_browser_client.cc", |
| 82 "content_browser_client.h", | 82 "content_browser_client.h", |
| 83 "context_factory.h", | 83 "context_factory.h", |
| 84 "cookie_store_factory.h", | 84 "cookie_store_factory.h", |
| 85 "desktop_media_id.cc", | 85 "desktop_media_id.cc", |
| 86 "desktop_media_id.h", | 86 "desktop_media_id.h", |
| 87 "desktop_notification_delegate.h", | 87 "desktop_notification_delegate.h", |
| 88 "devtools_agent_host.h", | 88 "devtools_agent_host.h", |
| 89 "devtools_agent_host_client.h", | 89 "devtools_agent_host_client.h", |
| 90 "devtools_agent_host_observer.h", |
| 90 "devtools_external_agent_proxy.h", | 91 "devtools_external_agent_proxy.h", |
| 91 "devtools_external_agent_proxy_delegate.h", | 92 "devtools_external_agent_proxy_delegate.h", |
| 92 "devtools_frontend_host.h", | 93 "devtools_frontend_host.h", |
| 93 "devtools_manager_delegate.cc", | 94 "devtools_manager_delegate.cc", |
| 94 "devtools_manager_delegate.h", | 95 "devtools_manager_delegate.h", |
| 95 "devtools_socket_factory.h", | 96 "devtools_socket_factory.h", |
| 96 "dom_storage_context.h", | 97 "dom_storage_context.h", |
| 97 "download_danger_type.h", | 98 "download_danger_type.h", |
| 98 "download_interrupt_reason_values.h", | 99 "download_interrupt_reason_values.h", |
| 99 "download_interrupt_reasons.h", | 100 "download_interrupt_reasons.h", |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 | 316 |
| 316 if (is_android) { | 317 if (is_android) { |
| 317 deps += [ "//ui/android" ] | 318 deps += [ "//ui/android" ] |
| 318 } | 319 } |
| 319 | 320 |
| 320 if (use_aura) { | 321 if (use_aura) { |
| 321 sources -= [ "context_factory.h" ] | 322 sources -= [ "context_factory.h" ] |
| 322 deps += [ "//ui/aura" ] | 323 deps += [ "//ui/aura" ] |
| 323 } | 324 } |
| 324 } | 325 } |
| OLD | NEW |