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

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 on Mac Created 5 years, 8 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 "web_contents/aura/gesture_nav_simple.cc", 400 "web_contents/aura/gesture_nav_simple.cc",
401 "web_contents/aura/gesture_nav_simple.h", 401 "web_contents/aura/gesture_nav_simple.h",
402 "web_contents/aura/overscroll_navigation_overlay.cc", 402 "web_contents/aura/overscroll_navigation_overlay.cc",
403 "web_contents/aura/overscroll_navigation_overlay.h", 403 "web_contents/aura/overscroll_navigation_overlay.h",
404 "web_contents/aura/overscroll_window_animation.cc", 404 "web_contents/aura/overscroll_window_animation.cc",
405 "web_contents/aura/overscroll_window_animation.h", 405 "web_contents/aura/overscroll_window_animation.h",
406 "web_contents/aura/overscroll_window_delegate.cc", 406 "web_contents/aura/overscroll_window_delegate.cc",
407 "web_contents/aura/overscroll_window_delegate.h", 407 "web_contents/aura/overscroll_window_delegate.h",
408 "web_contents/aura/shadow_layer_delegate.cc", 408 "web_contents/aura/shadow_layer_delegate.cc",
409 "web_contents/aura/shadow_layer_delegate.h", 409 "web_contents/aura/shadow_layer_delegate.h",
410 "web_contents/touch_editable_impl_aura.cc", 410 "web_contents/aura/touch_selection_controller_client_aura.cc",
411 "web_contents/touch_editable_impl_aura.h", 411 "web_contents/aura/touch_selection_controller_client_aura.h",
412 "web_contents/web_contents_view_aura.cc", 412 "web_contents/web_contents_view_aura.cc",
413 "web_contents/web_contents_view_aura.h", 413 "web_contents/web_contents_view_aura.h",
414 ] 414 ]
415 } 415 }
416 416
417 if (use_aura || is_mac) { 417 if (use_aura || is_mac) {
418 sources += 418 sources +=
419 rebase_path(content_browser_gypi_values.compositor_browser_sources, 419 rebase_path(content_browser_gypi_values.compositor_browser_sources,
420 ".", 420 ".",
421 "//content") 421 "//content")
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 } 458 }
459 459
460 if (is_linux && use_openssl) { 460 if (is_linux && use_openssl) {
461 deps += [ "//third_party/boringssl" ] 461 deps += [ "//third_party/boringssl" ]
462 } 462 }
463 463
464 if (enable_media_mojo_renderer) { 464 if (enable_media_mojo_renderer) {
465 deps += [ "//media/mojo/services:renderer_service" ] 465 deps += [ "//media/mojo/services:renderer_service" ]
466 } 466 }
467 } 467 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698