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

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

Issue 2336803003: Make SyntheticPointerAction to flush the pointer action sequence (Closed)
Patch Set: controller Created 4 years, 2 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("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
9 9
10 source_set("browser") { 10 source_set("browser") {
(...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 "renderer_host/input/synthetic_gesture_target_mac.h", 994 "renderer_host/input/synthetic_gesture_target_mac.h",
995 "renderer_host/input/synthetic_gesture_target_mac.mm", 995 "renderer_host/input/synthetic_gesture_target_mac.mm",
996 "renderer_host/input/synthetic_mouse_pointer.cc", 996 "renderer_host/input/synthetic_mouse_pointer.cc",
997 "renderer_host/input/synthetic_mouse_pointer.h", 997 "renderer_host/input/synthetic_mouse_pointer.h",
998 "renderer_host/input/synthetic_pinch_gesture.cc", 998 "renderer_host/input/synthetic_pinch_gesture.cc",
999 "renderer_host/input/synthetic_pinch_gesture.h", 999 "renderer_host/input/synthetic_pinch_gesture.h",
1000 "renderer_host/input/synthetic_pointer.cc", 1000 "renderer_host/input/synthetic_pointer.cc",
1001 "renderer_host/input/synthetic_pointer.h", 1001 "renderer_host/input/synthetic_pointer.h",
1002 "renderer_host/input/synthetic_pointer_action.cc", 1002 "renderer_host/input/synthetic_pointer_action.cc",
1003 "renderer_host/input/synthetic_pointer_action.h", 1003 "renderer_host/input/synthetic_pointer_action.h",
1004 "renderer_host/input/synthetic_pointer_action_controller.cc",
1005 "renderer_host/input/synthetic_pointer_action_controller.h",
1004 "renderer_host/input/synthetic_smooth_drag_gesture.cc", 1006 "renderer_host/input/synthetic_smooth_drag_gesture.cc",
1005 "renderer_host/input/synthetic_smooth_drag_gesture.h", 1007 "renderer_host/input/synthetic_smooth_drag_gesture.h",
1006 "renderer_host/input/synthetic_smooth_move_gesture.cc", 1008 "renderer_host/input/synthetic_smooth_move_gesture.cc",
1007 "renderer_host/input/synthetic_smooth_move_gesture.h", 1009 "renderer_host/input/synthetic_smooth_move_gesture.h",
1008 "renderer_host/input/synthetic_smooth_scroll_gesture.cc", 1010 "renderer_host/input/synthetic_smooth_scroll_gesture.cc",
1009 "renderer_host/input/synthetic_smooth_scroll_gesture.h", 1011 "renderer_host/input/synthetic_smooth_scroll_gesture.h",
1010 "renderer_host/input/synthetic_tap_gesture.cc", 1012 "renderer_host/input/synthetic_tap_gesture.cc",
1011 "renderer_host/input/synthetic_tap_gesture.h", 1013 "renderer_host/input/synthetic_tap_gesture.h",
1012 "renderer_host/input/synthetic_touch_pointer.cc", 1014 "renderer_host/input/synthetic_touch_pointer.cc",
1013 "renderer_host/input/synthetic_touch_pointer.h", 1015 "renderer_host/input/synthetic_touch_pointer.h",
(...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after
1962 if (!is_component_build) { 1964 if (!is_component_build) {
1963 public_deps = [ 1965 public_deps = [
1964 ":browser", 1966 ":browser",
1965 ] 1967 ]
1966 } else { 1968 } else {
1967 public_deps = [ 1969 public_deps = [
1968 "//third_party/leveldatabase", 1970 "//third_party/leveldatabase",
1969 ] 1971 ]
1970 } 1972 }
1971 } 1973 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698