| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 } | 228 } |
| 229 | 229 |
| 230 source_set("events_test_support") { | 230 source_set("events_test_support") { |
| 231 sources = [ | 231 sources = [ |
| 232 "test/cocoa_test_event_utils.h", | 232 "test/cocoa_test_event_utils.h", |
| 233 "test/cocoa_test_event_utils.mm", | 233 "test/cocoa_test_event_utils.mm", |
| 234 "test/events_test_utils.cc", | 234 "test/events_test_utils.cc", |
| 235 "test/events_test_utils.h", | 235 "test/events_test_utils.h", |
| 236 "test/events_test_utils_x11.cc", | 236 "test/events_test_utils_x11.cc", |
| 237 "test/events_test_utils_x11.h", | 237 "test/events_test_utils_x11.h", |
| 238 "test/mock_motion_event.cc", |
| 239 "test/mock_motion_event.h", |
| 238 "test/platform_event_waiter.cc", | 240 "test/platform_event_waiter.cc", |
| 239 "test/platform_event_waiter.h", | 241 "test/platform_event_waiter.h", |
| 240 "test/test_event_handler.cc", | 242 "test/test_event_handler.cc", |
| 241 "test/test_event_handler.h", | 243 "test/test_event_handler.h", |
| 242 "test/test_event_processor.cc", | 244 "test/test_event_processor.cc", |
| 243 "test/test_event_processor.h", | 245 "test/test_event_processor.h", |
| 244 "test/test_event_target.cc", | 246 "test/test_event_target.cc", |
| 245 "test/test_event_target.h", | 247 "test/test_event_target.h", |
| 246 ] | 248 ] |
| 247 | 249 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 271 test("events_unittests") { | 273 test("events_unittests") { |
| 272 sources = [ | 274 sources = [ |
| 273 "cocoa/events_mac_unittest.mm", | 275 "cocoa/events_mac_unittest.mm", |
| 274 "event_dispatcher_unittest.cc", | 276 "event_dispatcher_unittest.cc", |
| 275 "event_processor_unittest.cc", | 277 "event_processor_unittest.cc", |
| 276 "event_rewriter_unittest.cc", | 278 "event_rewriter_unittest.cc", |
| 277 "event_unittest.cc", | 279 "event_unittest.cc", |
| 278 "gestures/velocity_calculator_unittest.cc", | 280 "gestures/velocity_calculator_unittest.cc", |
| 279 "gesture_detection/bitset_32_unittest.cc", | 281 "gesture_detection/bitset_32_unittest.cc", |
| 280 "gesture_detection/gesture_provider_unittest.cc", | 282 "gesture_detection/gesture_provider_unittest.cc", |
| 281 "gesture_detection/mock_motion_event.h", | |
| 282 "gesture_detection/mock_motion_event.cc", | |
| 283 "gesture_detection/velocity_tracker_unittest.cc", | 283 "gesture_detection/velocity_tracker_unittest.cc", |
| 284 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 284 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
| 285 "keycodes/dom4/keycode_converter_unittest.cc", | 285 "keycodes/dom4/keycode_converter_unittest.cc", |
| 286 "latency_info_unittest.cc", | 286 "latency_info_unittest.cc", |
| 287 "platform/platform_event_source_unittest.cc", | 287 "platform/platform_event_source_unittest.cc", |
| 288 "x/events_x_unittest.cc", | 288 "x/events_x_unittest.cc", |
| 289 ] | 289 ] |
| 290 | 290 |
| 291 if (!use_x11) { | 291 if (!use_x11) { |
| 292 sources -= [ | 292 sources -= [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 306 ":events_base", | 306 ":events_base", |
| 307 ":events_test_support", | 307 ":events_test_support", |
| 308 ":gesture_detection", | 308 ":gesture_detection", |
| 309 "//base", | 309 "//base", |
| 310 "//base/test:run_all_unittests", | 310 "//base/test:run_all_unittests", |
| 311 "//skia", | 311 "//skia", |
| 312 "//testing/gtest", | 312 "//testing/gtest", |
| 313 "//ui/gfx:gfx_test_support", | 313 "//ui/gfx:gfx_test_support", |
| 314 ] | 314 ] |
| 315 } | 315 } |
| OLD | NEW |