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.cc", |
90 "devtools_agent_host_observer.h", | 91 "devtools_agent_host_observer.h", |
91 "devtools_external_agent_proxy.h", | 92 "devtools_external_agent_proxy.h", |
92 "devtools_external_agent_proxy_delegate.h", | 93 "devtools_external_agent_proxy_delegate.h", |
93 "devtools_frontend_host.h", | 94 "devtools_frontend_host.h", |
94 "devtools_manager_delegate.cc", | 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", |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 | 320 |
320 if (is_android) { | 321 if (is_android) { |
321 deps += [ "//ui/android" ] | 322 deps += [ "//ui/android" ] |
322 } | 323 } |
323 | 324 |
324 if (use_aura) { | 325 if (use_aura) { |
325 sources -= [ "context_factory.h" ] | 326 sources -= [ "context_factory.h" ] |
326 deps += [ "//ui/aura" ] | 327 deps += [ "//ui/aura" ] |
327 } | 328 } |
328 } | 329 } |
OLD | NEW |