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

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: Addressed review comments 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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 "//ui/aura_extra", 391 "//ui/aura_extra",
392 "//ui/strings", 392 "//ui/strings",
393 "//ui/wm", 393 "//ui/wm",
394 ] 394 ]
395 } else { # Not aura. 395 } else { # Not aura.
396 sources -= [ 396 sources -= [
397 "renderer_host/compositor_resize_lock_aura.cc", 397 "renderer_host/compositor_resize_lock_aura.cc",
398 "renderer_host/compositor_resize_lock_aura.h", 398 "renderer_host/compositor_resize_lock_aura.h",
399 "renderer_host/input/synthetic_gesture_target_aura.cc", 399 "renderer_host/input/synthetic_gesture_target_aura.cc",
400 "renderer_host/input/synthetic_gesture_target_aura.h", 400 "renderer_host/input/synthetic_gesture_target_aura.h",
401 "renderer_host/input/touch_selection_controller_client_aura.cc",
402 "renderer_host/input/touch_selection_controller_client_aura.h",
401 "renderer_host/native_web_keyboard_event_aura.cc", 403 "renderer_host/native_web_keyboard_event_aura.cc",
402 "renderer_host/render_widget_host_view_aura.cc", 404 "renderer_host/render_widget_host_view_aura.cc",
403 "renderer_host/render_widget_host_view_aura.h", 405 "renderer_host/render_widget_host_view_aura.h",
404 "renderer_host/ui_events_helper.cc", 406 "renderer_host/ui_events_helper.cc",
405 "renderer_host/ui_events_helper.h", 407 "renderer_host/ui_events_helper.h",
406 "renderer_host/web_input_event_aura.cc", 408 "renderer_host/web_input_event_aura.cc",
407 "renderer_host/web_input_event_aura.h", 409 "renderer_host/web_input_event_aura.h",
408 "web_contents/aura/gesture_nav_simple.cc", 410 "web_contents/aura/gesture_nav_simple.cc",
409 "web_contents/aura/gesture_nav_simple.h", 411 "web_contents/aura/gesture_nav_simple.h",
410 "web_contents/aura/overscroll_navigation_overlay.cc", 412 "web_contents/aura/overscroll_navigation_overlay.cc",
411 "web_contents/aura/overscroll_navigation_overlay.h", 413 "web_contents/aura/overscroll_navigation_overlay.h",
412 "web_contents/aura/overscroll_window_animation.cc", 414 "web_contents/aura/overscroll_window_animation.cc",
413 "web_contents/aura/overscroll_window_animation.h", 415 "web_contents/aura/overscroll_window_animation.h",
414 "web_contents/aura/overscroll_window_delegate.cc", 416 "web_contents/aura/overscroll_window_delegate.cc",
415 "web_contents/aura/overscroll_window_delegate.h", 417 "web_contents/aura/overscroll_window_delegate.h",
416 "web_contents/aura/shadow_layer_delegate.cc", 418 "web_contents/aura/shadow_layer_delegate.cc",
417 "web_contents/aura/shadow_layer_delegate.h", 419 "web_contents/aura/shadow_layer_delegate.h",
418 "web_contents/touch_editable_impl_aura.cc",
419 "web_contents/touch_editable_impl_aura.h",
420 "web_contents/web_contents_view_aura.cc", 420 "web_contents/web_contents_view_aura.cc",
421 "web_contents/web_contents_view_aura.h", 421 "web_contents/web_contents_view_aura.h",
422 ] 422 ]
423 } 423 }
424 424
425 if (use_aura || is_mac) { 425 if (use_aura || is_mac) {
426 sources += 426 sources +=
427 rebase_path(content_browser_gypi_values.compositor_browser_sources, 427 rebase_path(content_browser_gypi_values.compositor_browser_sources,
428 ".", 428 ".",
429 "//content") 429 "//content")
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 } 473 }
474 474
475 if (is_linux && use_openssl) { 475 if (is_linux && use_openssl) {
476 deps += [ "//third_party/boringssl" ] 476 deps += [ "//third_party/boringssl" ]
477 } 477 }
478 478
479 if (enable_media_mojo_renderer) { 479 if (enable_media_mojo_renderer) {
480 deps += [ "//media/mojo/services:renderer_service" ] 480 deps += [ "//media/mojo/services:renderer_service" ]
481 } 481 }
482 } 482 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698