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

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

Issue 698253004: Reland: Implement Aura side of unified touch text selection for contents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reverted "Added scoped helper for MotionEventAura" Created 5 years, 5 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//content/browser/browser.gni") 8 import("//content/browser/browser.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 "//ui/aura_extra", 392 "//ui/aura_extra",
393 "//ui/strings", 393 "//ui/strings",
394 "//ui/wm", 394 "//ui/wm",
395 ] 395 ]
396 } else { # Not aura. 396 } else { # Not aura.
397 sources -= [ 397 sources -= [
398 "renderer_host/compositor_resize_lock_aura.cc", 398 "renderer_host/compositor_resize_lock_aura.cc",
399 "renderer_host/compositor_resize_lock_aura.h", 399 "renderer_host/compositor_resize_lock_aura.h",
400 "renderer_host/input/synthetic_gesture_target_aura.cc", 400 "renderer_host/input/synthetic_gesture_target_aura.cc",
401 "renderer_host/input/synthetic_gesture_target_aura.h", 401 "renderer_host/input/synthetic_gesture_target_aura.h",
402 "renderer_host/input/touch_selection_controller_client_aura.cc",
403 "renderer_host/input/touch_selection_controller_client_aura.h",
402 "renderer_host/native_web_keyboard_event_aura.cc", 404 "renderer_host/native_web_keyboard_event_aura.cc",
403 "renderer_host/render_widget_host_view_aura.cc", 405 "renderer_host/render_widget_host_view_aura.cc",
404 "renderer_host/render_widget_host_view_aura.h", 406 "renderer_host/render_widget_host_view_aura.h",
405 "renderer_host/ui_events_helper.cc", 407 "renderer_host/ui_events_helper.cc",
406 "renderer_host/ui_events_helper.h", 408 "renderer_host/ui_events_helper.h",
407 "renderer_host/web_input_event_aura.cc", 409 "renderer_host/web_input_event_aura.cc",
408 "renderer_host/web_input_event_aura.h", 410 "renderer_host/web_input_event_aura.h",
409 "web_contents/aura/gesture_nav_simple.cc", 411 "web_contents/aura/gesture_nav_simple.cc",
410 "web_contents/aura/gesture_nav_simple.h", 412 "web_contents/aura/gesture_nav_simple.h",
411 "web_contents/aura/overscroll_navigation_overlay.cc", 413 "web_contents/aura/overscroll_navigation_overlay.cc",
412 "web_contents/aura/overscroll_navigation_overlay.h", 414 "web_contents/aura/overscroll_navigation_overlay.h",
413 "web_contents/aura/overscroll_window_animation.cc", 415 "web_contents/aura/overscroll_window_animation.cc",
414 "web_contents/aura/overscroll_window_animation.h", 416 "web_contents/aura/overscroll_window_animation.h",
415 "web_contents/aura/overscroll_window_delegate.cc", 417 "web_contents/aura/overscroll_window_delegate.cc",
416 "web_contents/aura/overscroll_window_delegate.h", 418 "web_contents/aura/overscroll_window_delegate.h",
417 "web_contents/aura/shadow_layer_delegate.cc", 419 "web_contents/aura/shadow_layer_delegate.cc",
418 "web_contents/aura/shadow_layer_delegate.h", 420 "web_contents/aura/shadow_layer_delegate.h",
419 "web_contents/touch_editable_impl_aura.cc",
420 "web_contents/touch_editable_impl_aura.h",
421 "web_contents/web_contents_view_aura.cc", 421 "web_contents/web_contents_view_aura.cc",
422 "web_contents/web_contents_view_aura.h", 422 "web_contents/web_contents_view_aura.h",
423 ] 423 ]
424 } 424 }
425 425
426 if (use_aura || is_mac) { 426 if (use_aura || is_mac) {
427 sources += 427 sources +=
428 rebase_path(content_browser_gypi_values.compositor_browser_sources, 428 rebase_path(content_browser_gypi_values.compositor_browser_sources,
429 ".", 429 ".",
430 "//content") 430 "//content")
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 if (enable_webvr) { 484 if (enable_webvr) {
485 sources += [ 485 sources += [
486 "vr/vr_device.cc", 486 "vr/vr_device.cc",
487 "vr/vr_device.h", 487 "vr/vr_device.h",
488 "vr/vr_device_manager.cc", 488 "vr/vr_device_manager.cc",
489 "vr/vr_device_manager.h", 489 "vr/vr_device_manager.h",
490 "vr/vr_device_provider.h", 490 "vr/vr_device_provider.h",
491 ] 491 ]
492 } 492 }
493 } 493 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698