| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 import("//ui/ozone/ozone.gni") | 9 import("//ui/ozone/ozone.gni") |
| 10 | 10 |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "cocoa/events_mac.mm", | 106 "cocoa/events_mac.mm", |
| 107 "event.cc", | 107 "event.cc", |
| 108 "event.h", | 108 "event.h", |
| 109 "event_dispatcher.cc", | 109 "event_dispatcher.cc", |
| 110 "event_dispatcher.h", | 110 "event_dispatcher.h", |
| 111 "event_handler.cc", | 111 "event_handler.cc", |
| 112 "event_handler.h", | 112 "event_handler.h", |
| 113 "event_processor.cc", | 113 "event_processor.cc", |
| 114 "event_processor.h", | 114 "event_processor.h", |
| 115 "event_rewriter.h", | 115 "event_rewriter.h", |
| 116 "event_sink.h", |
| 116 "event_source.cc", | 117 "event_source.cc", |
| 117 "event_source.h", | 118 "event_source.h", |
| 118 "event_target.cc", | 119 "event_target.cc", |
| 119 "event_target.h", | 120 "event_target.h", |
| 120 "event_target_iterator.h", | 121 "event_target_iterator.h", |
| 121 "event_targeter.h", | 122 "event_targeter.h", |
| 122 "event_utils.cc", | 123 "event_utils.cc", |
| 123 "event_utils.h", | 124 "event_utils.h", |
| 124 "events_export.h", | 125 "events_export.h", |
| 125 "events_stub.cc", | 126 "events_stub.cc", |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 generate_jar_jni("motionevent_jni_headers") { | 495 generate_jar_jni("motionevent_jni_headers") { |
| 495 jni_package = "ui" | 496 jni_package = "ui" |
| 496 classes = [ "android/view/MotionEvent.class" ] | 497 classes = [ "android/view/MotionEvent.class" ] |
| 497 } | 498 } |
| 498 | 499 |
| 499 generate_jar_jni("keyevent_jni_headers") { | 500 generate_jar_jni("keyevent_jni_headers") { |
| 500 jni_package = "ui" | 501 jni_package = "ui" |
| 501 classes = [ "android/view/KeyEvent.class" ] | 502 classes = [ "android/view/KeyEvent.class" ] |
| 502 } | 503 } |
| 503 } | 504 } |
| OLD | NEW |