| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 ] | 364 ] |
| 365 | 365 |
| 366 deps = [ | 366 deps = [ |
| 367 ":dom_keycode_converter", | 367 ":dom_keycode_converter", |
| 368 ":events", | 368 ":events", |
| 369 ":events_base", | 369 ":events_base", |
| 370 ":gesture_detection", | 370 ":gesture_detection", |
| 371 ":test_support", | 371 ":test_support", |
| 372 "//base", | 372 "//base", |
| 373 "//base/test:run_all_unittests", | 373 "//base/test:run_all_unittests", |
| 374 "//base/test:test_support", |
| 374 "//ipc:test_support", | 375 "//ipc:test_support", |
| 375 "//skia", | 376 "//skia", |
| 376 "//testing/gmock", | 377 "//testing/gmock", |
| 377 "//testing/gtest", | 378 "//testing/gtest", |
| 378 "//ui/events/devices", | 379 "//ui/events/devices", |
| 379 "//ui/events/ipc:events_ipc", | 380 "//ui/events/ipc:events_ipc", |
| 380 "//ui/events/platform", | 381 "//ui/events/platform", |
| 381 "//ui/gfx:test_support", | 382 "//ui/gfx:test_support", |
| 382 ] | 383 ] |
| 383 | 384 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 sources += [ "android/motion_event_android_unittest.cc" ] | 452 sources += [ "android/motion_event_android_unittest.cc" ] |
| 452 } | 453 } |
| 453 } | 454 } |
| 454 | 455 |
| 455 if (is_android) { | 456 if (is_android) { |
| 456 generate_jar_jni("motionevent_jni_headers") { | 457 generate_jar_jni("motionevent_jni_headers") { |
| 457 jni_package = "ui" | 458 jni_package = "ui" |
| 458 classes = [ "android/view/MotionEvent.class" ] | 459 classes = [ "android/view/MotionEvent.class" ] |
| 459 } | 460 } |
| 460 } | 461 } |
| OLD | NEW |