| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 "storage_partition.h", | 239 "storage_partition.h", |
| 240 "stream_handle.h", | 240 "stream_handle.h", |
| 241 "stream_info.cc", | 241 "stream_info.cc", |
| 242 "stream_info.h", | 242 "stream_info.h", |
| 243 "trace_uploader.h", | 243 "trace_uploader.h", |
| 244 "tracing_controller.h", | 244 "tracing_controller.h", |
| 245 "tracing_delegate.cc", | 245 "tracing_delegate.cc", |
| 246 "tracing_delegate.h", | 246 "tracing_delegate.h", |
| 247 "url_data_source.cc", | 247 "url_data_source.cc", |
| 248 "url_data_source.h", | 248 "url_data_source.h", |
| 249 "user_metrics.h", | |
| 250 "utility_process_host.h", | 249 "utility_process_host.h", |
| 251 "utility_process_mojo_client.h", | 250 "utility_process_mojo_client.h", |
| 252 "vpn_service_proxy.h", | 251 "vpn_service_proxy.h", |
| 253 "web_contents.cc", | 252 "web_contents.cc", |
| 254 "web_contents.h", | 253 "web_contents.h", |
| 255 "web_contents_binding_set.cc", | 254 "web_contents_binding_set.cc", |
| 256 "web_contents_binding_set.h", | 255 "web_contents_binding_set.h", |
| 257 "web_contents_delegate.cc", | 256 "web_contents_delegate.cc", |
| 258 "web_contents_delegate.h", | 257 "web_contents_delegate.h", |
| 259 "web_contents_media_capture_id.cc", | 258 "web_contents_media_capture_id.cc", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| 332 | 331 |
| 333 if (!is_android) { | 332 if (!is_android) { |
| 334 sources += [ "devtools_frontend_host.h" ] | 333 sources += [ "devtools_frontend_host.h" ] |
| 335 } | 334 } |
| 336 } | 335 } |
| OLD | NEW |