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

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: Fixed test failures 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 "//ui/aura_extra", 395 "//ui/aura_extra",
396 "//ui/strings", 396 "//ui/strings",
397 "//ui/wm", 397 "//ui/wm",
398 ] 398 ]
399 } else { # Not aura. 399 } else { # Not aura.
400 sources -= [ 400 sources -= [
401 "renderer_host/compositor_resize_lock_aura.cc", 401 "renderer_host/compositor_resize_lock_aura.cc",
402 "renderer_host/compositor_resize_lock_aura.h", 402 "renderer_host/compositor_resize_lock_aura.h",
403 "renderer_host/input/synthetic_gesture_target_aura.cc", 403 "renderer_host/input/synthetic_gesture_target_aura.cc",
404 "renderer_host/input/synthetic_gesture_target_aura.h", 404 "renderer_host/input/synthetic_gesture_target_aura.h",
405 "renderer_host/input/touch_selection_controller_client_aura.cc",
406 "renderer_host/input/touch_selection_controller_client_aura.h",
405 "renderer_host/native_web_keyboard_event_aura.cc", 407 "renderer_host/native_web_keyboard_event_aura.cc",
406 "renderer_host/render_widget_host_view_aura.cc", 408 "renderer_host/render_widget_host_view_aura.cc",
407 "renderer_host/render_widget_host_view_aura.h", 409 "renderer_host/render_widget_host_view_aura.h",
408 "renderer_host/ui_events_helper.cc", 410 "renderer_host/ui_events_helper.cc",
409 "renderer_host/ui_events_helper.h", 411 "renderer_host/ui_events_helper.h",
410 "renderer_host/web_input_event_aura.cc", 412 "renderer_host/web_input_event_aura.cc",
411 "renderer_host/web_input_event_aura.h", 413 "renderer_host/web_input_event_aura.h",
412 "web_contents/aura/gesture_nav_simple.cc", 414 "web_contents/aura/gesture_nav_simple.cc",
413 "web_contents/aura/gesture_nav_simple.h", 415 "web_contents/aura/gesture_nav_simple.h",
414 "web_contents/aura/overscroll_navigation_overlay.cc", 416 "web_contents/aura/overscroll_navigation_overlay.cc",
415 "web_contents/aura/overscroll_navigation_overlay.h", 417 "web_contents/aura/overscroll_navigation_overlay.h",
416 "web_contents/aura/overscroll_window_animation.cc", 418 "web_contents/aura/overscroll_window_animation.cc",
417 "web_contents/aura/overscroll_window_animation.h", 419 "web_contents/aura/overscroll_window_animation.h",
418 "web_contents/aura/overscroll_window_delegate.cc", 420 "web_contents/aura/overscroll_window_delegate.cc",
419 "web_contents/aura/overscroll_window_delegate.h", 421 "web_contents/aura/overscroll_window_delegate.h",
420 "web_contents/aura/shadow_layer_delegate.cc", 422 "web_contents/aura/shadow_layer_delegate.cc",
421 "web_contents/aura/shadow_layer_delegate.h", 423 "web_contents/aura/shadow_layer_delegate.h",
422 "web_contents/touch_editable_impl_aura.cc",
423 "web_contents/touch_editable_impl_aura.h",
424 "web_contents/web_contents_view_aura.cc", 424 "web_contents/web_contents_view_aura.cc",
425 "web_contents/web_contents_view_aura.h", 425 "web_contents/web_contents_view_aura.h",
426 ] 426 ]
427 } 427 }
428 428
429 if (use_aura || is_mac) { 429 if (use_aura || is_mac) {
430 sources += 430 sources +=
431 rebase_path(content_browser_gypi_values.compositor_browser_sources, 431 rebase_path(content_browser_gypi_values.compositor_browser_sources,
432 ".", 432 ".",
433 "//content") 433 "//content")
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 if (enable_webvr) { 487 if (enable_webvr) {
488 sources += [ 488 sources += [
489 "vr/vr_device.cc", 489 "vr/vr_device.cc",
490 "vr/vr_device.h", 490 "vr/vr_device.h",
491 "vr/vr_device_manager.cc", 491 "vr/vr_device_manager.cc",
492 "vr/vr_device_manager.h", 492 "vr/vr_device_manager.h",
493 "vr/vr_device_provider.h", 493 "vr/vr_device_provider.h",
494 ] 494 ]
495 } 495 }
496 } 496 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698