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/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 Loading... |
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 } |
OLD | NEW |