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 118 119 120 121 122 123 124 125 126 127 128
|
# Copyright 2014 The Chromium Authors
# 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",
"touch_selection_menu_runner.cc",
"touch_selection_menu_runner.h",
"touch_selection_metrics.cc",
"touch_selection_metrics.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",
"//ui/gfx/geometry",
]
if (use_aura) {
deps += [
"//cc/paint",
"//skia:skia",
"//ui/aura",
"//ui/base",
"//ui/color",
"//ui/color:mixers",
"//ui/compositor:compositor",
"//ui/gfx:gfx",
"//ui/native_theme",
"//ui/native_theme:native_theme_browser",
"//ui/resources",
"//ui/touch_selection/vector_icons",
]
sources += [
"touch_handle_drawable_aura.cc",
"touch_handle_drawable_aura.h",
"touch_selection_magnifier_aura.cc",
"touch_selection_magnifier_aura.h",
]
}
if (use_blink) {
sources += [ "touch_editing_controller.h" ]
deps += [ "//ui/menus" ]
}
}
static_library("test_support") {
testonly = true
sources = [
"touch_selection_controller_test_api.cc",
"touch_selection_controller_test_api.h",
]
deps = [
":touch_selection",
"//base:base",
]
}
test("ui_touch_selection_unittests") {
use_xvfb = use_xvfb_in_this_config
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/angle:includes" ]
if (use_aura) {
deps += [ "//ui/compositor:compositor" ]
sources += [ "touch_selection_magnifier_aura_unittest.cc" ]
}
}
if (is_android) {
java_cpp_enum("ui_touch_selection_enums_srcjar") {
sources = [
"selection_event_type.h",
"touch_selection_draggable.h",
]
}
java_cpp_enum("ui_touch_handle_orientation_srcjar") {
sources = [ "touch_handle_orientation.h" ]
}
}
|