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