| 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 "blink/input_scroll_elasticity_controller_unittest.cc", | 397 "blink/input_scroll_elasticity_controller_unittest.cc", |
| 398 "gestures/blink/web_gesture_curve_impl_unittest.cc", | 398 "gestures/blink/web_gesture_curve_impl_unittest.cc", |
| 399 "ipc/latency_info_param_traits_unittest.cc", | 399 "ipc/latency_info_param_traits_unittest.cc", |
| 400 ] | 400 ] |
| 401 deps += [ | 401 deps += [ |
| 402 "//cc", | 402 "//cc", |
| 403 "//ipc:test_support", | 403 "//ipc:test_support", |
| 404 "//third_party/WebKit/public:blink_headers", | 404 "//third_party/WebKit/public:blink_headers", |
| 405 "//ui/events/blink", | 405 "//ui/events/blink", |
| 406 "//ui/events/gestures/blink", | 406 "//ui/events/gestures/blink", |
| 407 "//ui/events/ipc:events_ipc", | 407 "//ui/events/ipc", |
| 408 ] | 408 ] |
| 409 } | 409 } |
| 410 | 410 |
| 411 data_deps = [ | 411 data_deps = [ |
| 412 "//third_party/mesa:osmesa", | 412 "//third_party/mesa:osmesa", |
| 413 ] | 413 ] |
| 414 | 414 |
| 415 include_dirs = [ "//testing/gmock/include" ] | 415 include_dirs = [ "//testing/gmock/include" ] |
| 416 | 416 |
| 417 if (use_x11) { | 417 if (use_x11) { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 generate_jar_jni("motionevent_jni_headers") { | 473 generate_jar_jni("motionevent_jni_headers") { |
| 474 jni_package = "ui" | 474 jni_package = "ui" |
| 475 classes = [ "android/view/MotionEvent.class" ] | 475 classes = [ "android/view/MotionEvent.class" ] |
| 476 } | 476 } |
| 477 | 477 |
| 478 generate_jar_jni("keyevent_jni_headers") { | 478 generate_jar_jni("keyevent_jni_headers") { |
| 479 jni_package = "ui" | 479 jni_package = "ui" |
| 480 classes = [ "android/view/KeyEvent.class" ] | 480 classes = [ "android/view/KeyEvent.class" ] |
| 481 } | 481 } |
| 482 } | 482 } |
| OLD | NEW |