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/ozone/ozone.gni") | 7 import("//ui/ozone/ozone.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 "win/event_utils_win_unittest.cc", | 372 "win/event_utils_win_unittest.cc", |
373 ] | 373 ] |
374 | 374 |
375 deps = [ | 375 deps = [ |
376 ":dom_keycode_converter", | 376 ":dom_keycode_converter", |
377 ":events", | 377 ":events", |
378 ":events_base", | 378 ":events_base", |
379 ":gesture_detection", | 379 ":gesture_detection", |
380 ":test_support", | 380 ":test_support", |
381 "//base", | 381 "//base", |
382 "//base/test:run_all_unittests", | |
383 "//base/test:test_support", | 382 "//base/test:test_support", |
| 383 "//mojo/edk/test:run_all_unittests", |
384 "//skia", | 384 "//skia", |
385 "//testing/gmock", | 385 "//testing/gmock", |
386 "//testing/gtest", | 386 "//testing/gtest", |
387 "//ui/events/devices", | 387 "//ui/events/devices", |
388 "//ui/events/platform", | 388 "//ui/events/platform", |
389 "//ui/gfx:test_support", | 389 "//ui/gfx:test_support", |
390 ] | 390 ] |
391 | 391 |
392 if (!is_ios) { | 392 if (!is_ios) { |
393 sources += [ | 393 sources += [ |
394 "blink/blink_event_util_unittest.cc", | 394 "blink/blink_event_util_unittest.cc", |
395 "blink/input_handler_proxy_unittest.cc", | 395 "blink/input_handler_proxy_unittest.cc", |
396 "blink/input_scroll_elasticity_controller_unittest.cc", | 396 "blink/input_scroll_elasticity_controller_unittest.cc", |
397 "gestures/blink/web_gesture_curve_impl_unittest.cc", | 397 "gestures/blink/web_gesture_curve_impl_unittest.cc", |
398 "ipc/latency_info_param_traits_unittest.cc", | 398 "ipc/latency_info_param_traits_unittest.cc", |
| 399 "mojo/struct_traits_unittest.cc", |
399 ] | 400 ] |
400 deps += [ | 401 deps += [ |
401 "//cc", | 402 "//cc", |
402 "//ipc:test_support", | 403 "//ipc:test_support", |
| 404 "//mojo/edk/system", |
| 405 "//mojo/public/cpp/bindings", |
403 "//third_party/WebKit/public:blink_headers", | 406 "//third_party/WebKit/public:blink_headers", |
404 "//ui/events/blink", | 407 "//ui/events/blink", |
405 "//ui/events/gestures/blink", | 408 "//ui/events/gestures/blink", |
406 "//ui/events/ipc", | 409 "//ui/events/ipc", |
| 410 "//ui/events/mojo:test_interfaces", |
407 ] | 411 ] |
408 } | 412 } |
409 | 413 |
410 data_deps = [ | 414 data_deps = [ |
411 "//third_party/mesa:osmesa", | 415 "//third_party/mesa:osmesa", |
412 ] | 416 ] |
413 | 417 |
414 include_dirs = [ "//testing/gmock/include" ] | 418 include_dirs = [ "//testing/gmock/include" ] |
415 | 419 |
416 if (use_x11) { | 420 if (use_x11) { |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 generate_jar_jni("motionevent_jni_headers") { | 477 generate_jar_jni("motionevent_jni_headers") { |
474 jni_package = "ui" | 478 jni_package = "ui" |
475 classes = [ "android/view/MotionEvent.class" ] | 479 classes = [ "android/view/MotionEvent.class" ] |
476 } | 480 } |
477 | 481 |
478 generate_jar_jni("keyevent_jni_headers") { | 482 generate_jar_jni("keyevent_jni_headers") { |
479 jni_package = "ui" | 483 jni_package = "ui" |
480 classes = [ "android/view/KeyEvent.class" ] | 484 classes = [ "android/view/KeyEvent.class" ] |
481 } | 485 } |
482 } | 486 } |
OLD | NEW |