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 | 7 |
8 static_library("dom_keycode_converter") { | 8 static_library("dom_keycode_converter") { |
9 sources = [ | 9 sources = [ |
10 "keycodes/dom/dom_code.h", | 10 "keycodes/dom/dom_code.h", |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 "test/events_test_utils_x11.h", | 283 "test/events_test_utils_x11.h", |
284 ] | 284 ] |
285 deps += [ | 285 deps += [ |
286 "//ui/events/devices", | 286 "//ui/events/devices", |
287 "//ui/gfx/x", | 287 "//ui/gfx/x", |
288 ] | 288 ] |
289 } | 289 } |
290 | 290 |
291 if (use_x11 || use_ozone) { | 291 if (use_x11 || use_ozone) { |
292 sources += [ "test/device_data_manager_test_api_impl.cc" ] | 292 sources += [ "test/device_data_manager_test_api_impl.cc" ] |
| 293 deps += [ "//ui/events/devices" ] |
293 } else { | 294 } else { |
294 sources += [ "test/device_data_manager_test_api_stub.cc" ] | 295 sources += [ "test/device_data_manager_test_api_stub.cc" ] |
295 } | 296 } |
296 } | 297 } |
297 | 298 |
298 test("events_unittests") { | 299 test("events_unittests") { |
299 sources = [ | 300 sources = [ |
300 "android/scroller_unittest.cc", | 301 "android/scroller_unittest.cc", |
301 "cocoa/events_mac_unittest.mm", | 302 "cocoa/events_mac_unittest.mm", |
302 "devices/x11/device_data_manager_x11_unittest.cc", | 303 "devices/x11/device_data_manager_x11_unittest.cc", |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 if (is_nacl) { | 380 if (is_nacl) { |
380 source_set("latency_info") { | 381 source_set("latency_info") { |
381 sources = [ | 382 sources = [ |
382 "ipc/latency_info_param_traits.cc", | 383 "ipc/latency_info_param_traits.cc", |
383 "ipc/latency_info_param_traits.h", | 384 "ipc/latency_info_param_traits.h", |
384 "latency_info.cc", | 385 "latency_info.cc", |
385 "latency_info.h", | 386 "latency_info.h", |
386 ] | 387 ] |
387 } | 388 } |
388 } | 389 } |
OLD | NEW |