| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 "tracing_delegate.cc", | 240 "tracing_delegate.cc", |
| 241 "tracing_delegate.h", | 241 "tracing_delegate.h", |
| 242 "url_data_source.cc", | 242 "url_data_source.cc", |
| 243 "url_data_source.h", | 243 "url_data_source.h", |
| 244 "user_metrics.h", | 244 "user_metrics.h", |
| 245 "utility_process_host.h", | 245 "utility_process_host.h", |
| 246 "utility_process_mojo_client.h", | 246 "utility_process_mojo_client.h", |
| 247 "vpn_service_proxy.h", | 247 "vpn_service_proxy.h", |
| 248 "web_contents.cc", | 248 "web_contents.cc", |
| 249 "web_contents.h", | 249 "web_contents.h", |
| 250 "web_contents_binding_set.cc", |
| 251 "web_contents_binding_set.h", |
| 250 "web_contents_delegate.cc", | 252 "web_contents_delegate.cc", |
| 251 "web_contents_delegate.h", | 253 "web_contents_delegate.h", |
| 252 "web_contents_media_capture_id.cc", | 254 "web_contents_media_capture_id.cc", |
| 253 "web_contents_media_capture_id.h", | 255 "web_contents_media_capture_id.h", |
| 254 "web_contents_observer.cc", | 256 "web_contents_observer.cc", |
| 255 "web_contents_observer.h", | 257 "web_contents_observer.h", |
| 256 "web_contents_user_data.h", | 258 "web_contents_user_data.h", |
| 257 "web_contents_view_delegate.cc", | 259 "web_contents_view_delegate.cc", |
| 258 "web_contents_view_delegate.h", | 260 "web_contents_view_delegate.h", |
| 259 "web_drag_dest_delegate.h", | 261 "web_drag_dest_delegate.h", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 | 312 |
| 311 if (is_android) { | 313 if (is_android) { |
| 312 deps += [ "//ui/android" ] | 314 deps += [ "//ui/android" ] |
| 313 } | 315 } |
| 314 | 316 |
| 315 if (use_aura) { | 317 if (use_aura) { |
| 316 sources -= [ "context_factory.h" ] | 318 sources -= [ "context_factory.h" ] |
| 317 deps += [ "//ui/aura" ] | 319 deps += [ "//ui/aura" ] |
| 318 } | 320 } |
| 319 } | 321 } |
| OLD | NEW |