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

Side by Side Diff: ui/events/BUILD.gn

Issue 393953012: Eager Gesture Recognition on Aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « ui/aura/window_unittest.cc ('k') | ui/events/events.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 static_library("dom4_keycode_converter") { 7 static_library("dom4_keycode_converter") {
8 sources = [ 8 sources = [
9 "keycodes/dom4/keycode_converter.cc", 9 "keycodes/dom4/keycode_converter.cc",
10 "keycodes/dom4/keycode_converter.h", 10 "keycodes/dom4/keycode_converter.h",
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 ] 284 ]
285 } 285 }
286 286
287 if (use_ozone) { 287 if (use_ozone) {
288 sources += [ 288 sources += [
289 "ozone/evdev/key_event_converter_evdev_unittest.cc", 289 "ozone/evdev/key_event_converter_evdev_unittest.cc",
290 "ozone/evdev/touch_event_converter_evdev_unittest.cc", 290 "ozone/evdev/touch_event_converter_evdev_unittest.cc",
291 ] 291 ]
292 } 292 }
293 293
294 if (use_aura) {
295 sources += [
296 "gestures/gesture_provider_aura_unittest.cc",
297 ]
298 }
299
294 deps = [ 300 deps = [
295 ":events", 301 ":events",
296 ":events_base", 302 ":events_base",
297 ":gesture_detection", 303 ":gesture_detection",
298 ":test_support", 304 ":test_support",
299 "//base", 305 "//base",
300 "//base/test:run_all_unittests", 306 "//base/test:run_all_unittests",
301 "//skia", 307 "//skia",
302 "//testing/gtest", 308 "//testing/gtest",
303 "//ui/gfx:test_support", 309 "//ui/gfx:test_support",
304 ] 310 ]
305 } 311 }
OLDNEW
« 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