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

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

Issue 2869823003: [VSync Queue] Plug touch ack to gesture events and flush vsync queue if necessary (Closed)
Patch Set: Address sadrul's commments Created 3 years, 6 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//gpu/vulkan/features.gni") 7 import("//gpu/vulkan/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//printing/features/features.gni") 10 import("//printing/features/features.gni")
(...skipping 2019 matching lines...) Expand 10 before | Expand all | Expand 10 after
2030 ] 2030 ]
2031 } else { # Not aura. 2031 } else { # Not aura.
2032 sources -= [ 2032 sources -= [
2033 "renderer_host/input/synthetic_gesture_target_aura.cc", 2033 "renderer_host/input/synthetic_gesture_target_aura.cc",
2034 "renderer_host/input/synthetic_gesture_target_aura.h", 2034 "renderer_host/input/synthetic_gesture_target_aura.h",
2035 "renderer_host/input/touch_selection_controller_client_aura.cc", 2035 "renderer_host/input/touch_selection_controller_client_aura.cc",
2036 "renderer_host/input/touch_selection_controller_client_aura.h", 2036 "renderer_host/input/touch_selection_controller_client_aura.h",
2037 "renderer_host/native_web_keyboard_event_aura.cc", 2037 "renderer_host/native_web_keyboard_event_aura.cc",
2038 "renderer_host/render_widget_host_view_aura.cc", 2038 "renderer_host/render_widget_host_view_aura.cc",
2039 "renderer_host/render_widget_host_view_aura.h", 2039 "renderer_host/render_widget_host_view_aura.h",
2040 "renderer_host/ui_events_helper.cc",
2041 "renderer_host/ui_events_helper.h",
2042 "web_contents/aura/gesture_nav_simple.cc", 2040 "web_contents/aura/gesture_nav_simple.cc",
2043 "web_contents/aura/gesture_nav_simple.h", 2041 "web_contents/aura/gesture_nav_simple.h",
2044 "web_contents/aura/overscroll_navigation_overlay.cc", 2042 "web_contents/aura/overscroll_navigation_overlay.cc",
2045 "web_contents/aura/overscroll_navigation_overlay.h", 2043 "web_contents/aura/overscroll_navigation_overlay.h",
2046 "web_contents/aura/overscroll_window_animation.cc", 2044 "web_contents/aura/overscroll_window_animation.cc",
2047 "web_contents/aura/overscroll_window_animation.h", 2045 "web_contents/aura/overscroll_window_animation.h",
2048 "web_contents/aura/overscroll_window_delegate.cc", 2046 "web_contents/aura/overscroll_window_delegate.cc",
2049 "web_contents/aura/overscroll_window_delegate.h", 2047 "web_contents/aura/overscroll_window_delegate.h",
2050 "web_contents/aura/shadow_layer_delegate.cc", 2048 "web_contents/aura/shadow_layer_delegate.cc",
2051 "web_contents/aura/shadow_layer_delegate.h", 2049 "web_contents/aura/shadow_layer_delegate.h",
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
2151 if (!is_component_build) { 2149 if (!is_component_build) {
2152 public_deps = [ 2150 public_deps = [
2153 ":browser", 2151 ":browser",
2154 ] 2152 ]
2155 } else { 2153 } else {
2156 public_deps = [ 2154 public_deps = [
2157 "//third_party/leveldatabase", 2155 "//third_party/leveldatabase",
2158 ] 2156 ]
2159 } 2157 }
2160 } 2158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698