| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "download_item.h", | 106 "download_item.h", |
| 107 "download_manager.h", | 107 "download_manager.h", |
| 108 "download_manager_delegate.cc", | 108 "download_manager_delegate.cc", |
| 109 "download_manager_delegate.h", | 109 "download_manager_delegate.h", |
| 110 "download_save_info.cc", | 110 "download_save_info.cc", |
| 111 "download_save_info.h", | 111 "download_save_info.h", |
| 112 "download_url_parameters.cc", | 112 "download_url_parameters.cc", |
| 113 "download_url_parameters.h", | 113 "download_url_parameters.h", |
| 114 "favicon_status.cc", | 114 "favicon_status.cc", |
| 115 "favicon_status.h", | 115 "favicon_status.h", |
| 116 "file_descriptor_info.h", | |
| 117 "focused_node_details.h", | 116 "focused_node_details.h", |
| 118 "font_list_async.h", | 117 "font_list_async.h", |
| 119 "global_request_id.h", | 118 "global_request_id.h", |
| 120 "gpu_data_manager.h", | 119 "gpu_data_manager.h", |
| 121 "gpu_data_manager_observer.h", | 120 "gpu_data_manager_observer.h", |
| 122 "gpu_feature_checker.cc", | 121 "gpu_feature_checker.cc", |
| 123 "gpu_feature_checker.h", | 122 "gpu_feature_checker.h", |
| 124 "gpu_service_registry.cc", | 123 "gpu_service_registry.cc", |
| 125 "gpu_service_registry.h", | 124 "gpu_service_registry.h", |
| 126 "gpu_utils.cc", | 125 "gpu_utils.cc", |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 "//ui/gl", | 327 "//ui/gl", |
| 329 "//ui/surface", | 328 "//ui/surface", |
| 330 ] | 329 ] |
| 331 | 330 |
| 332 allow_circular_includes_from = [ | 331 allow_circular_includes_from = [ |
| 333 # This target is a pair with content/browser. They always go together and | 332 # This target is a pair with content/browser. They always go together and |
| 334 # include headers from each other. | 333 # include headers from each other. |
| 335 "//content/browser", | 334 "//content/browser", |
| 336 ] | 335 ] |
| 337 | 336 |
| 337 if (is_posix) { |
| 338 sources += [ "posix_file_descriptor_info.h" ] |
| 339 } |
| 340 |
| 338 if (is_android) { | 341 if (is_android) { |
| 339 deps += [ "//ui/android" ] | 342 deps += [ "//ui/android" ] |
| 340 } | 343 } |
| 341 | 344 |
| 342 if (use_aura) { | 345 if (use_aura) { |
| 343 sources -= [ "context_factory.h" ] | 346 sources -= [ "context_factory.h" ] |
| 344 deps += [ "//ui/aura" ] | 347 deps += [ "//ui/aura" ] |
| 345 } | 348 } |
| 346 | 349 |
| 347 if (!is_android) { | 350 if (!is_android) { |
| 348 sources += [ | 351 sources += [ |
| 349 "devtools_frontend_host.h", | 352 "devtools_frontend_host.h", |
| 350 "host_zoom_map.h", | 353 "host_zoom_map.h", |
| 351 "zoom_level_delegate.h", | 354 "zoom_level_delegate.h", |
| 352 ] | 355 ] |
| 353 } | 356 } |
| 354 | 357 |
| 355 if (is_chromeos) { | 358 if (is_chromeos) { |
| 356 sources += [ | 359 sources += [ |
| 357 "arc_tracing_agent.cc", | 360 "arc_tracing_agent.cc", |
| 358 "arc_tracing_agent.h", | 361 "arc_tracing_agent.h", |
| 359 ] | 362 ] |
| 360 } | 363 } |
| 361 } | 364 } |
| OLD | NEW |