| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "devtools_external_agent_proxy_delegate.h", | 97 "devtools_external_agent_proxy_delegate.h", |
| 98 "devtools_frontend_host.h", | 98 "devtools_frontend_host.h", |
| 99 "devtools_manager_delegate.cc", | 99 "devtools_manager_delegate.cc", |
| 100 "devtools_manager_delegate.h", | 100 "devtools_manager_delegate.h", |
| 101 "devtools_socket_factory.h", | 101 "devtools_socket_factory.h", |
| 102 "dom_storage_context.h", | 102 "dom_storage_context.h", |
| 103 "download_danger_type.h", | 103 "download_danger_type.h", |
| 104 "download_interrupt_reason_values.h", | 104 "download_interrupt_reason_values.h", |
| 105 "download_interrupt_reasons.h", | 105 "download_interrupt_reasons.h", |
| 106 "download_item.h", | 106 "download_item.h", |
| 107 "download_manager.cc", |
| 107 "download_manager.h", | 108 "download_manager.h", |
| 108 "download_manager_delegate.cc", | 109 "download_manager_delegate.cc", |
| 109 "download_manager_delegate.h", | 110 "download_manager_delegate.h", |
| 110 "download_save_info.cc", | 111 "download_save_info.cc", |
| 111 "download_save_info.h", | 112 "download_save_info.h", |
| 112 "download_url_parameters.cc", | 113 "download_url_parameters.cc", |
| 113 "download_url_parameters.h", | 114 "download_url_parameters.h", |
| 114 "favicon_status.cc", | 115 "favicon_status.cc", |
| 115 "favicon_status.h", | 116 "favicon_status.h", |
| 116 "file_descriptor_info.h", | 117 "file_descriptor_info.h", |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 ] | 356 ] |
| 356 } | 357 } |
| 357 | 358 |
| 358 if (is_chromeos) { | 359 if (is_chromeos) { |
| 359 sources += [ | 360 sources += [ |
| 360 "arc_tracing_agent.cc", | 361 "arc_tracing_agent.cc", |
| 361 "arc_tracing_agent.h", | 362 "arc_tracing_agent.h", |
| 362 ] | 363 ] |
| 363 } | 364 } |
| 364 } | 365 } |
| OLD | NEW |