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

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: Rebased after blink issue fixed: r200194 Created 5 years, 4 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
« no previous file with comments | « no previous file | content/browser/renderer_host/input/touch_selection_controller_client_aura.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 "//ui/aura_extra", 410 "//ui/aura_extra",
411 "//ui/strings", 411 "//ui/strings",
412 "//ui/wm", 412 "//ui/wm",
413 ] 413 ]
414 } else { # Not aura. 414 } else { # Not aura.
415 sources -= [ 415 sources -= [
416 "renderer_host/compositor_resize_lock_aura.cc", 416 "renderer_host/compositor_resize_lock_aura.cc",
417 "renderer_host/compositor_resize_lock_aura.h", 417 "renderer_host/compositor_resize_lock_aura.h",
418 "renderer_host/input/synthetic_gesture_target_aura.cc", 418 "renderer_host/input/synthetic_gesture_target_aura.cc",
419 "renderer_host/input/synthetic_gesture_target_aura.h", 419 "renderer_host/input/synthetic_gesture_target_aura.h",
420 "renderer_host/input/touch_selection_controller_client_aura.cc",
421 "renderer_host/input/touch_selection_controller_client_aura.h",
420 "renderer_host/native_web_keyboard_event_aura.cc", 422 "renderer_host/native_web_keyboard_event_aura.cc",
421 "renderer_host/render_widget_host_view_aura.cc", 423 "renderer_host/render_widget_host_view_aura.cc",
422 "renderer_host/render_widget_host_view_aura.h", 424 "renderer_host/render_widget_host_view_aura.h",
423 "renderer_host/ui_events_helper.cc", 425 "renderer_host/ui_events_helper.cc",
424 "renderer_host/ui_events_helper.h", 426 "renderer_host/ui_events_helper.h",
425 "renderer_host/web_input_event_aura.cc", 427 "renderer_host/web_input_event_aura.cc",
426 "renderer_host/web_input_event_aura.h", 428 "renderer_host/web_input_event_aura.h",
427 "web_contents/aura/gesture_nav_simple.cc", 429 "web_contents/aura/gesture_nav_simple.cc",
428 "web_contents/aura/gesture_nav_simple.h", 430 "web_contents/aura/gesture_nav_simple.h",
429 "web_contents/aura/overscroll_navigation_overlay.cc", 431 "web_contents/aura/overscroll_navigation_overlay.cc",
430 "web_contents/aura/overscroll_navigation_overlay.h", 432 "web_contents/aura/overscroll_navigation_overlay.h",
431 "web_contents/aura/overscroll_window_animation.cc", 433 "web_contents/aura/overscroll_window_animation.cc",
432 "web_contents/aura/overscroll_window_animation.h", 434 "web_contents/aura/overscroll_window_animation.h",
433 "web_contents/aura/overscroll_window_delegate.cc", 435 "web_contents/aura/overscroll_window_delegate.cc",
434 "web_contents/aura/overscroll_window_delegate.h", 436 "web_contents/aura/overscroll_window_delegate.h",
435 "web_contents/aura/shadow_layer_delegate.cc", 437 "web_contents/aura/shadow_layer_delegate.cc",
436 "web_contents/aura/shadow_layer_delegate.h", 438 "web_contents/aura/shadow_layer_delegate.h",
437 "web_contents/touch_editable_impl_aura.cc",
438 "web_contents/touch_editable_impl_aura.h",
439 "web_contents/web_contents_view_aura.cc", 439 "web_contents/web_contents_view_aura.cc",
440 "web_contents/web_contents_view_aura.h", 440 "web_contents/web_contents_view_aura.h",
441 ] 441 ]
442 } 442 }
443 443
444 if (use_aura || is_mac) { 444 if (use_aura || is_mac) {
445 sources += 445 sources +=
446 rebase_path(content_browser_gypi_values.compositor_browser_sources, 446 rebase_path(content_browser_gypi_values.compositor_browser_sources,
447 ".", 447 ".",
448 "//content") 448 "//content")
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 if (enable_webvr) { 499 if (enable_webvr) {
500 sources += [ 500 sources += [
501 "vr/vr_device.cc", 501 "vr/vr_device.cc",
502 "vr/vr_device.h", 502 "vr/vr_device.h",
503 "vr/vr_device_manager.cc", 503 "vr/vr_device_manager.cc",
504 "vr/vr_device_manager.h", 504 "vr/vr_device_manager.h",
505 "vr/vr_device_provider.h", 505 "vr/vr_device_provider.h",
506 ] 506 ]
507 } 507 }
508 } 508 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/input/touch_selection_controller_client_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698