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

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: Fix MSAN Use-of-uninitialized-value: Initialize GestureEventDetails 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 2018 matching lines...) Expand 10 before | Expand all | Expand 10 after
2029 ] 2029 ]
2030 } else { # Not aura. 2030 } else { # Not aura.
2031 sources -= [ 2031 sources -= [
2032 "renderer_host/input/synthetic_gesture_target_aura.cc", 2032 "renderer_host/input/synthetic_gesture_target_aura.cc",
2033 "renderer_host/input/synthetic_gesture_target_aura.h", 2033 "renderer_host/input/synthetic_gesture_target_aura.h",
2034 "renderer_host/input/touch_selection_controller_client_aura.cc", 2034 "renderer_host/input/touch_selection_controller_client_aura.cc",
2035 "renderer_host/input/touch_selection_controller_client_aura.h", 2035 "renderer_host/input/touch_selection_controller_client_aura.h",
2036 "renderer_host/native_web_keyboard_event_aura.cc", 2036 "renderer_host/native_web_keyboard_event_aura.cc",
2037 "renderer_host/render_widget_host_view_aura.cc", 2037 "renderer_host/render_widget_host_view_aura.cc",
2038 "renderer_host/render_widget_host_view_aura.h", 2038 "renderer_host/render_widget_host_view_aura.h",
2039 "renderer_host/ui_events_helper.cc",
2040 "renderer_host/ui_events_helper.h",
2041 "web_contents/aura/gesture_nav_simple.cc", 2039 "web_contents/aura/gesture_nav_simple.cc",
2042 "web_contents/aura/gesture_nav_simple.h", 2040 "web_contents/aura/gesture_nav_simple.h",
2043 "web_contents/aura/overscroll_navigation_overlay.cc", 2041 "web_contents/aura/overscroll_navigation_overlay.cc",
2044 "web_contents/aura/overscroll_navigation_overlay.h", 2042 "web_contents/aura/overscroll_navigation_overlay.h",
2045 "web_contents/aura/overscroll_window_animation.cc", 2043 "web_contents/aura/overscroll_window_animation.cc",
2046 "web_contents/aura/overscroll_window_animation.h", 2044 "web_contents/aura/overscroll_window_animation.h",
2047 "web_contents/aura/overscroll_window_delegate.cc", 2045 "web_contents/aura/overscroll_window_delegate.cc",
2048 "web_contents/aura/overscroll_window_delegate.h", 2046 "web_contents/aura/overscroll_window_delegate.h",
2049 "web_contents/aura/shadow_layer_delegate.cc", 2047 "web_contents/aura/shadow_layer_delegate.cc",
2050 "web_contents/aura/shadow_layer_delegate.h", 2048 "web_contents/aura/shadow_layer_delegate.h",
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
2150 if (!is_component_build) { 2148 if (!is_component_build) {
2151 public_deps = [ 2149 public_deps = [
2152 ":browser", 2150 ":browser",
2153 ] 2151 ]
2154 } else { 2152 } else {
2155 public_deps = [ 2153 public_deps = [
2156 "//third_party/leveldatabase", 2154 "//third_party/leveldatabase",
2157 ] 2155 ]
2158 } 2156 }
2159 } 2157 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698