| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 } | 222 } |
| 223 | 223 |
| 224 source_set("events_test_support") { | 224 source_set("events_test_support") { |
| 225 sources = [ | 225 sources = [ |
| 226 "test/cocoa_test_event_utils.h", | 226 "test/cocoa_test_event_utils.h", |
| 227 "test/cocoa_test_event_utils.mm", | 227 "test/cocoa_test_event_utils.mm", |
| 228 "test/events_test_utils.cc", | 228 "test/events_test_utils.cc", |
| 229 "test/events_test_utils.h", | 229 "test/events_test_utils.h", |
| 230 "test/events_test_utils_x11.cc", | 230 "test/events_test_utils_x11.cc", |
| 231 "test/events_test_utils_x11.h", | 231 "test/events_test_utils_x11.h", |
| 232 "test/mock_motion_event.cc", |
| 233 "test/mock_motion_event.h", |
| 232 "test/platform_event_waiter.cc", | 234 "test/platform_event_waiter.cc", |
| 233 "test/platform_event_waiter.h", | 235 "test/platform_event_waiter.h", |
| 234 "test/test_event_handler.cc", | 236 "test/test_event_handler.cc", |
| 235 "test/test_event_handler.h", | 237 "test/test_event_handler.h", |
| 236 "test/test_event_processor.cc", | 238 "test/test_event_processor.cc", |
| 237 "test/test_event_processor.h", | 239 "test/test_event_processor.h", |
| 238 "test/test_event_target.cc", | 240 "test/test_event_target.cc", |
| 239 "test/test_event_target.h", | 241 "test/test_event_target.h", |
| 240 ] | 242 ] |
| 241 | 243 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 265 test("events_unittests") { | 267 test("events_unittests") { |
| 266 sources = [ | 268 sources = [ |
| 267 "cocoa/cocoa_event_utils_unittest.mm", | 269 "cocoa/cocoa_event_utils_unittest.mm", |
| 268 "event_dispatcher_unittest.cc", | 270 "event_dispatcher_unittest.cc", |
| 269 "event_processor_unittest.cc", | 271 "event_processor_unittest.cc", |
| 270 "event_rewriter_unittest.cc", | 272 "event_rewriter_unittest.cc", |
| 271 "event_unittest.cc", | 273 "event_unittest.cc", |
| 272 "gestures/velocity_calculator_unittest.cc", | 274 "gestures/velocity_calculator_unittest.cc", |
| 273 "gesture_detection/bitset_32_unittest.cc", | 275 "gesture_detection/bitset_32_unittest.cc", |
| 274 "gesture_detection/gesture_provider_unittest.cc", | 276 "gesture_detection/gesture_provider_unittest.cc", |
| 275 "gesture_detection/mock_motion_event.h", | |
| 276 "gesture_detection/mock_motion_event.cc", | |
| 277 "gesture_detection/velocity_tracker_unittest.cc", | 277 "gesture_detection/velocity_tracker_unittest.cc", |
| 278 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 278 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
| 279 "keycodes/dom4/keycode_converter_unittest.cc", | 279 "keycodes/dom4/keycode_converter_unittest.cc", |
| 280 "latency_info_unittest.cc", | 280 "latency_info_unittest.cc", |
| 281 "platform/platform_event_source_unittest.cc", | 281 "platform/platform_event_source_unittest.cc", |
| 282 "x/events_x_unittest.cc", | 282 "x/events_x_unittest.cc", |
| 283 ] | 283 ] |
| 284 | 284 |
| 285 if (!use_x11) { | 285 if (!use_x11) { |
| 286 sources -= [ | 286 sources -= [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 300 ":events_base", | 300 ":events_base", |
| 301 ":events_test_support", | 301 ":events_test_support", |
| 302 ":gesture_detection", | 302 ":gesture_detection", |
| 303 "//base", | 303 "//base", |
| 304 "//base/test:run_all_unittests", | 304 "//base/test:run_all_unittests", |
| 305 "//skia", | 305 "//skia", |
| 306 "//testing/gtest", | 306 "//testing/gtest", |
| 307 "//ui/gfx:gfx_test_support", | 307 "//ui/gfx:gfx_test_support", |
| 308 ] | 308 ] |
| 309 } | 309 } |
| OLD | NEW |