| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "//build/config/linux:x11", | 150 "//build/config/linux:x11", |
| 151 ] | 151 ] |
| 152 deps += [ | 152 deps += [ |
| 153 "//ui/events/devices", | 153 "//ui/events/devices", |
| 154 "//ui/events/devices/x11", | 154 "//ui/events/devices/x11", |
| 155 "//ui/events/x", | 155 "//ui/events/x", |
| 156 "//ui/gfx/x", | 156 "//ui/gfx/x", |
| 157 ] | 157 ] |
| 158 } | 158 } |
| 159 | 159 |
| 160 if (!is_chromeos && is_linux) { | |
| 161 sources += [ | |
| 162 "linux/text_edit_command_auralinux.cc", | |
| 163 "linux/text_edit_command_auralinux.h", | |
| 164 "linux/text_edit_key_bindings_delegate_auralinux.cc", | |
| 165 "linux/text_edit_key_bindings_delegate_auralinux.h", | |
| 166 ] | |
| 167 } | |
| 168 | |
| 169 if (use_ozone || (is_android && use_aura)) { | 160 if (use_ozone || (is_android && use_aura)) { |
| 170 sources += [ "events_default.cc" ] | 161 sources += [ "events_default.cc" ] |
| 171 } | 162 } |
| 172 | 163 |
| 173 if (use_ozone) { | 164 if (use_ozone) { |
| 174 sources += [ | 165 sources += [ |
| 175 "ozone/events_ozone.cc", | 166 "ozone/events_ozone.cc", |
| 176 "ozone/events_ozone.h", | 167 "ozone/events_ozone.h", |
| 177 ] | 168 ] |
| 178 deps += [ "//ui/events/ozone:events_ozone_layout" ] | 169 deps += [ "//ui/events/ozone:events_ozone_layout" ] |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 generate_jar_jni("motionevent_jni_headers") { | 469 generate_jar_jni("motionevent_jni_headers") { |
| 479 jni_package = "ui" | 470 jni_package = "ui" |
| 480 classes = [ "android/view/MotionEvent.class" ] | 471 classes = [ "android/view/MotionEvent.class" ] |
| 481 } | 472 } |
| 482 | 473 |
| 483 generate_jar_jni("keyevent_jni_headers") { | 474 generate_jar_jni("keyevent_jni_headers") { |
| 484 jni_package = "ui" | 475 jni_package = "ui" |
| 485 classes = [ "android/view/KeyEvent.class" ] | 476 classes = [ "android/view/KeyEvent.class" ] |
| 486 } | 477 } |
| 487 } | 478 } |
| OLD | NEW |