OLD | NEW |
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 971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
982 "renderer_host/input/synthetic_gesture_target_mac.h", | 982 "renderer_host/input/synthetic_gesture_target_mac.h", |
983 "renderer_host/input/synthetic_gesture_target_mac.mm", | 983 "renderer_host/input/synthetic_gesture_target_mac.mm", |
984 "renderer_host/input/synthetic_mouse_pointer.cc", | 984 "renderer_host/input/synthetic_mouse_pointer.cc", |
985 "renderer_host/input/synthetic_mouse_pointer.h", | 985 "renderer_host/input/synthetic_mouse_pointer.h", |
986 "renderer_host/input/synthetic_pinch_gesture.cc", | 986 "renderer_host/input/synthetic_pinch_gesture.cc", |
987 "renderer_host/input/synthetic_pinch_gesture.h", | 987 "renderer_host/input/synthetic_pinch_gesture.h", |
988 "renderer_host/input/synthetic_pointer.cc", | 988 "renderer_host/input/synthetic_pointer.cc", |
989 "renderer_host/input/synthetic_pointer.h", | 989 "renderer_host/input/synthetic_pointer.h", |
990 "renderer_host/input/synthetic_pointer_action.cc", | 990 "renderer_host/input/synthetic_pointer_action.cc", |
991 "renderer_host/input/synthetic_pointer_action.h", | 991 "renderer_host/input/synthetic_pointer_action.h", |
| 992 "renderer_host/input/synthetic_pointer_action_controller.cc", |
| 993 "renderer_host/input/synthetic_pointer_action_controller.h", |
992 "renderer_host/input/synthetic_smooth_drag_gesture.cc", | 994 "renderer_host/input/synthetic_smooth_drag_gesture.cc", |
993 "renderer_host/input/synthetic_smooth_drag_gesture.h", | 995 "renderer_host/input/synthetic_smooth_drag_gesture.h", |
994 "renderer_host/input/synthetic_smooth_move_gesture.cc", | 996 "renderer_host/input/synthetic_smooth_move_gesture.cc", |
995 "renderer_host/input/synthetic_smooth_move_gesture.h", | 997 "renderer_host/input/synthetic_smooth_move_gesture.h", |
996 "renderer_host/input/synthetic_smooth_scroll_gesture.cc", | 998 "renderer_host/input/synthetic_smooth_scroll_gesture.cc", |
997 "renderer_host/input/synthetic_smooth_scroll_gesture.h", | 999 "renderer_host/input/synthetic_smooth_scroll_gesture.h", |
998 "renderer_host/input/synthetic_tap_gesture.cc", | 1000 "renderer_host/input/synthetic_tap_gesture.cc", |
999 "renderer_host/input/synthetic_tap_gesture.h", | 1001 "renderer_host/input/synthetic_tap_gesture.h", |
1000 "renderer_host/input/synthetic_touch_pointer.cc", | 1002 "renderer_host/input/synthetic_touch_pointer.cc", |
1001 "renderer_host/input/synthetic_touch_pointer.h", | 1003 "renderer_host/input/synthetic_touch_pointer.h", |
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1925 if (!is_component_build) { | 1927 if (!is_component_build) { |
1926 public_deps = [ | 1928 public_deps = [ |
1927 ":browser", | 1929 ":browser", |
1928 ] | 1930 ] |
1929 } else { | 1931 } else { |
1930 public_deps = [ | 1932 public_deps = [ |
1931 "//third_party/leveldatabase", | 1933 "//third_party/leveldatabase", |
1932 ] | 1934 ] |
1933 } | 1935 } |
1934 } | 1936 } |
OLD | NEW |