| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 "//ui/gl", | 326 "//ui/gl", |
| 328 "//ui/surface", | 327 "//ui/surface", |
| 329 ] | 328 ] |
| 330 | 329 |
| 331 allow_circular_includes_from = [ | 330 allow_circular_includes_from = [ |
| 332 # This target is a pair with content/browser. They always go together and | 331 # This target is a pair with content/browser. They always go together and |
| 333 # include headers from each other. | 332 # include headers from each other. |
| 334 "//content/browser", | 333 "//content/browser", |
| 335 ] | 334 ] |
| 336 | 335 |
| 336 if (is_posix) { |
| 337 sources += [ "posix_file_descriptor_info.h" ] |
| 338 } |
| 339 |
| 337 if (is_android) { | 340 if (is_android) { |
| 338 deps += [ "//ui/android" ] | 341 deps += [ "//ui/android" ] |
| 339 } | 342 } |
| 340 | 343 |
| 341 if (use_aura) { | 344 if (use_aura) { |
| 342 sources -= [ "context_factory.h" ] | 345 sources -= [ "context_factory.h" ] |
| 343 deps += [ "//ui/aura" ] | 346 deps += [ "//ui/aura" ] |
| 344 } | 347 } |
| 345 | 348 |
| 346 if (!is_android) { | 349 if (!is_android) { |
| 347 sources += [ | 350 sources += [ |
| 348 "devtools_frontend_host.h", | 351 "devtools_frontend_host.h", |
| 349 "host_zoom_map.h", | 352 "host_zoom_map.h", |
| 350 "zoom_level_delegate.h", | 353 "zoom_level_delegate.h", |
| 351 ] | 354 ] |
| 352 } | 355 } |
| 353 | 356 |
| 354 if (is_chromeos) { | 357 if (is_chromeos) { |
| 355 sources += [ | 358 sources += [ |
| 356 "arc_tracing_agent.cc", | 359 "arc_tracing_agent.cc", |
| 357 "arc_tracing_agent.h", | 360 "arc_tracing_agent.h", |
| 358 ] | 361 ] |
| 359 } | 362 } |
| 360 } | 363 } |
| OLD | NEW |