| 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("dom4_keycode_converter") { | 8 static_library("dom4_keycode_converter") { |
| 9 sources = [ | 9 sources = [ |
| 10 "keycodes/dom3/dom_code.h", | 10 "keycodes/dom3/dom_code.h", |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 "event_unittest.cc", | 287 "event_unittest.cc", |
| 288 "gesture_detection/bitset_32_unittest.cc", | 288 "gesture_detection/bitset_32_unittest.cc", |
| 289 "gesture_detection/filtered_gesture_provider_unittest.cc", | 289 "gesture_detection/filtered_gesture_provider_unittest.cc", |
| 290 "gesture_detection/gesture_event_data_packet_unittest.cc", | 290 "gesture_detection/gesture_event_data_packet_unittest.cc", |
| 291 "gesture_detection/gesture_provider_unittest.cc", | 291 "gesture_detection/gesture_provider_unittest.cc", |
| 292 "gesture_detection/motion_event_buffer_unittest.cc", | 292 "gesture_detection/motion_event_buffer_unittest.cc", |
| 293 "gesture_detection/motion_event_generic_unittest.cc", | 293 "gesture_detection/motion_event_generic_unittest.cc", |
| 294 "gesture_detection/snap_scroll_controller_unittest.cc", | 294 "gesture_detection/snap_scroll_controller_unittest.cc", |
| 295 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 295 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
| 296 "gesture_detection/velocity_tracker_unittest.cc", | 296 "gesture_detection/velocity_tracker_unittest.cc", |
| 297 "gestures/blink/web_gesture_curve_impl_unittest.cc", |
| 297 "gestures/fling_curve_unittest.cc", | 298 "gestures/fling_curve_unittest.cc", |
| 298 "keycodes/dom4/keycode_converter_unittest.cc", | 299 "keycodes/dom4/keycode_converter_unittest.cc", |
| 299 "latency_info_unittest.cc", | 300 "latency_info_unittest.cc", |
| 300 "platform/platform_event_source_unittest.cc", | 301 "platform/platform_event_source_unittest.cc", |
| 301 "x/events_x_unittest.cc", | 302 "x/events_x_unittest.cc", |
| 302 ] | 303 ] |
| 303 | 304 |
| 304 deps = [ | 305 deps = [ |
| 305 ":dom4_keycode_converter", | 306 ":dom4_keycode_converter", |
| 306 ":events", | 307 ":events", |
| 307 ":events_base", | 308 ":events_base", |
| 308 ":gesture_detection", | 309 ":gesture_detection", |
| 309 ":test_support", | 310 ":test_support", |
| 310 "//base", | 311 "//base", |
| 311 "//base/test:run_all_unittests", | 312 "//base/test:run_all_unittests", |
| 312 "//skia", | 313 "//skia", |
| 313 "//testing/gtest", | 314 "//testing/gtest", |
| 315 "//third_party/WebKit/public:blink_headers", |
| 314 "//ui/events/devices", | 316 "//ui/events/devices", |
| 317 "//ui/events/gestures/blink", |
| 315 "//ui/events/platform", | 318 "//ui/events/platform", |
| 316 "//ui/gfx:test_support", | 319 "//ui/gfx:test_support", |
| 317 ] | 320 ] |
| 318 | 321 |
| 319 include_dirs = [ "//testing/gmock/include" ] | 322 include_dirs = [ "//testing/gmock/include" ] |
| 320 | 323 |
| 321 if (use_x11) { | 324 if (use_x11) { |
| 322 configs += [ "//build/config/linux:x11" ] | 325 configs += [ "//build/config/linux:x11" ] |
| 323 deps += [ "//ui/gfx/x" ] | 326 deps += [ "//ui/gfx/x" ] |
| 324 } else { | 327 } else { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 if (is_nacl) { | 359 if (is_nacl) { |
| 357 source_set("latency_info") { | 360 source_set("latency_info") { |
| 358 sources = [ | 361 sources = [ |
| 359 "ipc/latency_info_param_traits.cc", | 362 "ipc/latency_info_param_traits.cc", |
| 360 "ipc/latency_info_param_traits.h", | 363 "ipc/latency_info_param_traits.h", |
| 361 "latency_info.cc", | 364 "latency_info.cc", |
| 362 "latency_info.h", | 365 "latency_info.h", |
| 363 ] | 366 ] |
| 364 } | 367 } |
| 365 } | 368 } |
| OLD | NEW |