| 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 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "event_target_iterator.h", | 111 "event_target_iterator.h", |
| 112 "event_targeter.h", | 112 "event_targeter.h", |
| 113 "event_utils.cc", | 113 "event_utils.cc", |
| 114 "event_utils.h", | 114 "event_utils.h", |
| 115 "events_export.h", | 115 "events_export.h", |
| 116 "events_stub.cc", | 116 "events_stub.cc", |
| 117 "gestures/gesture_recognizer_impl_mac.cc", | 117 "gestures/gesture_recognizer_impl_mac.cc", |
| 118 "gestures/gesture_types.h", | 118 "gestures/gesture_types.h", |
| 119 "null_event_targeter.cc", | 119 "null_event_targeter.cc", |
| 120 "null_event_targeter.h", | 120 "null_event_targeter.h", |
| 121 "scoped_target_handler.cc", |
| 122 "scoped_target_handler.h", |
| 121 "win/events_win.cc", | 123 "win/events_win.cc", |
| 122 "win/system_event_state_lookup.cc", | 124 "win/system_event_state_lookup.cc", |
| 123 "win/system_event_state_lookup.h", | 125 "win/system_event_state_lookup.h", |
| 124 ] | 126 ] |
| 125 | 127 |
| 126 defines = [ "EVENTS_IMPLEMENTATION" ] | 128 defines = [ "EVENTS_IMPLEMENTATION" ] |
| 127 | 129 |
| 128 public_deps = [ | 130 public_deps = [ |
| 129 ":events_base", | 131 ":events_base", |
| 130 ] | 132 ] |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 sources += [ "android/motion_event_android_unittest.cc" ] | 435 sources += [ "android/motion_event_android_unittest.cc" ] |
| 434 } | 436 } |
| 435 } | 437 } |
| 436 | 438 |
| 437 if (is_android) { | 439 if (is_android) { |
| 438 generate_jar_jni("motionevent_jni_headers") { | 440 generate_jar_jni("motionevent_jni_headers") { |
| 439 jni_package = "ui" | 441 jni_package = "ui" |
| 440 classes = [ "android/view/MotionEvent.class" ] | 442 classes = [ "android/view/MotionEvent.class" ] |
| 441 } | 443 } |
| 442 } | 444 } |
| OLD | NEW |