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

Unified Diff: ui/events/BUILD.gn

Issue 613373004: Adopt ui::GestureConfiguration on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Copyright Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/aura/window_unittest.cc ('k') | ui/events/events.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/BUILD.gn
diff --git a/ui/events/BUILD.gn b/ui/events/BUILD.gn
index 395dab03934121935d5aa54004d928027df22985..921533e286ee504e520e2f2f35f96b50ce6f6eaf 100644
--- a/ui/events/BUILD.gn
+++ b/ui/events/BUILD.gn
@@ -30,8 +30,6 @@ component("events_base") {
"gesture_event_details.h",
"gestures/fling_curve.cc",
"gestures/fling_curve.h",
- "gestures/gesture_configuration.cc",
- "gestures/gesture_configuration.h",
"input_device.cc",
"input_device.h",
"keyboard_device.cc",
@@ -178,7 +176,8 @@ component("gesture_detection") {
"gesture_detection/bitset_32.h",
"gesture_detection/filtered_gesture_provider.cc",
"gesture_detection/filtered_gesture_provider.h",
- "gesture_detection/gesture_config_helper.h",
+ "gesture_detection/gesture_configuration.cc",
+ "gesture_detection/gesture_configuration.h",
"gesture_detection/gesture_detection_export.h",
"gesture_detection/gesture_detector.cc",
"gesture_detection/gesture_detector.h",
@@ -190,6 +189,8 @@ component("gesture_detection") {
"gesture_detection/gesture_listeners.h",
"gesture_detection/gesture_provider.cc",
"gesture_detection/gesture_provider.h",
+ "gesture_detection/gesture_provider_config_helper.cc",
+ "gesture_detection/gesture_provider_config_helper.h",
"gesture_detection/gesture_touch_uma_histogram.cc",
"gesture_detection/gesture_touch_uma_histogram.h",
"gesture_detection/motion_event.cc",
@@ -215,6 +216,7 @@ component("gesture_detection") {
deps = [
":events_base",
"//base",
+ "//base/third_party/dynamic_annotations",
"//ui/gfx",
"//ui/gfx/geometry",
]
@@ -222,11 +224,11 @@ component("gesture_detection") {
defines = [ "GESTURE_DETECTION_IMPLEMENTATION" ]
if (is_android) {
- sources += [ "gesture_detection/gesture_config_helper_android.cc" ]
+ sources += [ "gesture_detection/gesture_configuration_android.cc" ]
} else if (use_aura) {
- sources += [ "gesture_detection/gesture_config_helper_aura.cc" ]
+ sources += [ "gesture_detection/gesture_configuration_aura.cc" ]
} else {
- sources += [ "gesture_detection/gesture_config_helper.cc" ]
+ sources += [ "gesture_detection/gesture_configuration_default.cc" ]
}
}
« no previous file with comments | « ui/aura/window_unittest.cc ('k') | ui/events/events.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698