| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "gpu_feature_checker.cc", | 121 "gpu_feature_checker.cc", |
| 122 "gpu_feature_checker.h", | 122 "gpu_feature_checker.h", |
| 123 "gpu_service_registry.cc", | 123 "gpu_service_registry.cc", |
| 124 "gpu_service_registry.h", | 124 "gpu_service_registry.h", |
| 125 "gpu_utils.cc", | 125 "gpu_utils.cc", |
| 126 "gpu_utils.h", | 126 "gpu_utils.h", |
| 127 "guest_host.h", | 127 "guest_host.h", |
| 128 "guest_mode.cc", | 128 "guest_mode.cc", |
| 129 "guest_mode.h", | 129 "guest_mode.h", |
| 130 "histogram_fetcher.h", | 130 "histogram_fetcher.h", |
| 131 "host_zoom_map.h", | |
| 132 "indexed_db_context.h", | 131 "indexed_db_context.h", |
| 133 "indexed_db_info.h", | 132 "indexed_db_info.h", |
| 134 "interstitial_page.h", | 133 "interstitial_page.h", |
| 135 "interstitial_page_delegate.cc", | 134 "interstitial_page_delegate.cc", |
| 136 "interstitial_page_delegate.h", | 135 "interstitial_page_delegate.h", |
| 137 "invalidate_type.h", | 136 "invalidate_type.h", |
| 138 "javascript_dialog_manager.cc", | 137 "javascript_dialog_manager.cc", |
| 139 "javascript_dialog_manager.h", | 138 "javascript_dialog_manager.h", |
| 140 "keyboard_event_processing_result.h", | 139 "keyboard_event_processing_result.h", |
| 141 "load_notification_details.h", | 140 "load_notification_details.h", |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 "web_drag_dest_delegate.h", | 277 "web_drag_dest_delegate.h", |
| 279 "web_ui.h", | 278 "web_ui.h", |
| 280 "web_ui_controller.cc", | 279 "web_ui_controller.cc", |
| 281 "web_ui_controller.h", | 280 "web_ui_controller.h", |
| 282 "web_ui_controller_factory.h", | 281 "web_ui_controller_factory.h", |
| 283 "web_ui_data_source.h", | 282 "web_ui_data_source.h", |
| 284 "web_ui_message_handler.h", | 283 "web_ui_message_handler.h", |
| 285 "websocket_handshake_request_info.h", | 284 "websocket_handshake_request_info.h", |
| 286 "worker_service.h", | 285 "worker_service.h", |
| 287 "worker_service_observer.h", | 286 "worker_service_observer.h", |
| 288 "zoom_level_delegate.h", | |
| 289 "zygote_handle_linux.h", | 287 "zygote_handle_linux.h", |
| 290 "zygote_host_linux.h", | 288 "zygote_host_linux.h", |
| 291 ] | 289 ] |
| 292 configs += [ | 290 configs += [ |
| 293 "//build/config:precompiled_headers", | 291 "//build/config:precompiled_headers", |
| 294 "//build/config/compiler:wexit_time_destructors", | 292 "//build/config/compiler:wexit_time_destructors", |
| 295 "//content:content_implementation", | 293 "//content:content_implementation", |
| 296 ] | 294 ] |
| 297 | 295 |
| 298 public_deps = [ | 296 public_deps = [ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 if (is_android) { | 333 if (is_android) { |
| 336 deps += [ "//ui/android" ] | 334 deps += [ "//ui/android" ] |
| 337 } | 335 } |
| 338 | 336 |
| 339 if (use_aura) { | 337 if (use_aura) { |
| 340 sources -= [ "context_factory.h" ] | 338 sources -= [ "context_factory.h" ] |
| 341 deps += [ "//ui/aura" ] | 339 deps += [ "//ui/aura" ] |
| 342 } | 340 } |
| 343 | 341 |
| 344 if (!is_android) { | 342 if (!is_android) { |
| 345 sources += [ "devtools_frontend_host.h" ] | 343 sources += [ |
| 344 "devtools_frontend_host.h", |
| 345 "host_zoom_map.h", |
| 346 "zoom_level_delegate.h", |
| 347 ] |
| 346 } | 348 } |
| 347 } | 349 } |
| OLD | NEW |