| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//ui/events/xkb.gni") | 7 import("//ui/events/xkb.gni") |
| 8 | 8 |
| 9 static_library("dom_keycode_converter") { | 9 static_library("dom_keycode_converter") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 ] | 250 ] |
| 251 deps += [ | 251 deps += [ |
| 252 "//ui/events/devices", | 252 "//ui/events/devices", |
| 253 "//ui/gfx/x", | 253 "//ui/gfx/x", |
| 254 ] | 254 ] |
| 255 } | 255 } |
| 256 } | 256 } |
| 257 | 257 |
| 258 test("events_unittests") { | 258 test("events_unittests") { |
| 259 sources = [ | 259 sources = [ |
| 260 "cocoa/events_mac_unittest.mm", | |
| 261 "devices/x11/device_data_manager_x11_unittest.cc", | 260 "devices/x11/device_data_manager_x11_unittest.cc", |
| 262 "event_dispatcher_unittest.cc", | 261 "event_dispatcher_unittest.cc", |
| 263 "event_processor_unittest.cc", | 262 "event_processor_unittest.cc", |
| 264 "event_rewriter_unittest.cc", | 263 "event_rewriter_unittest.cc", |
| 265 "event_unittest.cc", | 264 "event_unittest.cc", |
| 266 "gesture_detection/bitset_32_unittest.cc", | 265 "gesture_detection/bitset_32_unittest.cc", |
| 267 "gesture_detection/filtered_gesture_provider_unittest.cc", | 266 "gesture_detection/filtered_gesture_provider_unittest.cc", |
| 268 "gesture_detection/gesture_event_data_packet_unittest.cc", | 267 "gesture_detection/gesture_event_data_packet_unittest.cc", |
| 269 "gesture_detection/gesture_provider_unittest.cc", | 268 "gesture_detection/gesture_provider_unittest.cc", |
| 270 "gesture_detection/motion_event_buffer_unittest.cc", | 269 "gesture_detection/motion_event_buffer_unittest.cc", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 if (is_nacl) { | 334 if (is_nacl) { |
| 336 source_set("latency_info") { | 335 source_set("latency_info") { |
| 337 sources = [ | 336 sources = [ |
| 338 "ipc/latency_info_param_traits.cc", | 337 "ipc/latency_info_param_traits.cc", |
| 339 "ipc/latency_info_param_traits.h", | 338 "ipc/latency_info_param_traits.h", |
| 340 "latency_info.cc", | 339 "latency_info.cc", |
| 341 "latency_info.h", | 340 "latency_info.h", |
| 342 ] | 341 ] |
| 343 } | 342 } |
| 344 } | 343 } |
| OLD | NEW |