Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Side by Side Diff: content/public/browser/BUILD.gn

Issue 2874833002: Don't compile code for desktop zoom or GuestViews on mobile platforms. (Closed)
Patch Set: Update CastBrowserContext Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 "web_drag_dest_delegate.h", 276 "web_drag_dest_delegate.h",
278 "web_ui.h", 277 "web_ui.h",
279 "web_ui_controller.cc", 278 "web_ui_controller.cc",
280 "web_ui_controller.h", 279 "web_ui_controller.h",
281 "web_ui_controller_factory.h", 280 "web_ui_controller_factory.h",
282 "web_ui_data_source.h", 281 "web_ui_data_source.h",
283 "web_ui_message_handler.h", 282 "web_ui_message_handler.h",
284 "websocket_handshake_request_info.h", 283 "websocket_handshake_request_info.h",
285 "worker_service.h", 284 "worker_service.h",
286 "worker_service_observer.h", 285 "worker_service_observer.h",
287 "zoom_level_delegate.h",
288 "zygote_handle_linux.h", 286 "zygote_handle_linux.h",
289 "zygote_host_linux.h", 287 "zygote_host_linux.h",
290 ] 288 ]
291 configs += [ 289 configs += [
292 "//build/config:precompiled_headers", 290 "//build/config:precompiled_headers",
293 "//build/config/compiler:wexit_time_destructors", 291 "//build/config/compiler:wexit_time_destructors",
294 "//content:content_implementation", 292 "//content:content_implementation",
295 ] 293 ]
296 294
297 public_deps = [ 295 public_deps = [
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 if (is_android) { 331 if (is_android) {
334 deps += [ "//ui/android" ] 332 deps += [ "//ui/android" ]
335 } 333 }
336 334
337 if (use_aura) { 335 if (use_aura) {
338 sources -= [ "context_factory.h" ] 336 sources -= [ "context_factory.h" ]
339 deps += [ "//ui/aura" ] 337 deps += [ "//ui/aura" ]
340 } 338 }
341 339
342 if (!is_android) { 340 if (!is_android) {
343 sources += [ "devtools_frontend_host.h" ] 341 sources += [
342 "devtools_frontend_host.h",
343 "host_zoom_map.h",
344 "zoom_level_delegate.h",
345 ]
344 } 346 }
345 } 347 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698