1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/ui.gni")
import("//testing/test.gni")
if (is_android) {
import("//build/config/android/rules.gni")
}
component("touch_selection") {
output_name = "ui_touch_selection"
sources = [
"longpress_drag_selector.cc",
"longpress_drag_selector.h",
"selection_event_type.h",
"touch_handle.cc",
"touch_handle.h",
"touch_handle_orientation.h",
"touch_selection_controller.cc",
"touch_selection_controller.h",
"touch_selection_draggable.h",
"ui_touch_selection_export.h",
]
defines = [ "UI_TOUCH_SELECTION_IMPLEMENTATION" ]
deps = [
"//base:base",
"//ui/base:base",
"//ui/events:events",
"//ui/events:gesture_detection",
"//ui/gfx/geometry:geometry",
]
if (use_aura) {
deps += [
"//skia:skia",
"//ui/aura:aura",
"//ui/aura_extra:aura_extra",
"//ui/compositor:compositor",
"//ui/gfx:gfx",
]
sources += [
"touch_handle_drawable_aura.cc",
"touch_handle_drawable_aura.h",
"touch_selection_menu_runner.cc",
"touch_selection_menu_runner.h",
]
}
}
static_library("test_support") {
testonly = true
sources = [
"touch_selection_controller_test_api.cc",
"touch_selection_controller_test_api.h",
]
deps = [
":touch_selection",
]
}
# TODO(GYP): Delete this after we've converted everything to GN.
# The _run targets exist only for compatibility w/ GYP.
group("ui_touch_selection_unittests_run") {
testonly = true
deps = [
":ui_touch_selection_unittests",
]
}
test("ui_touch_selection_unittests") {
sources = [
"longpress_drag_selector_unittest.cc",
"touch_handle_unittest.cc",
"touch_selection_controller_unittest.cc",
]
deps = [
":test_support",
":touch_selection",
"//base/test:run_all_unittests",
"//testing/gmock:gmock",
"//testing/gtest:gtest",
"//ui/base:base",
"//ui/events:test_support",
"//ui/gfx:gfx",
"//ui/gfx:test_support",
]
data_deps = [ "//third_party/mesa:osmesa" ]
}
if (is_android) {
java_cpp_enum("ui_touch_selection_enums_srcjar") {
sources = [
"selection_event_type.h",
]
outputs = [
"org/chromium/ui/touch_selection/SelectionEventType.java",
]
}
java_cpp_enum("ui_touch_handle_orientation_srcjar") {
sources = [
"touch_handle_orientation.h",
]
outputs = [
"org/chromium/ui/touch_selection/TouchHandleOrientation.java",
]
}
}
|