Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: ui/events/BUILD.gn

Issue 2029733003: Views: Replace resource ids with ui::TextEditCommand enum for text editing commands in Textfield. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: === Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/base/ime/ui_base_ime.gyp ('k') | ui/events/events.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 generate_jar_jni("motionevent_jni_headers") { 468 generate_jar_jni("motionevent_jni_headers") {
478 jni_package = "ui" 469 jni_package = "ui"
479 classes = [ "android/view/MotionEvent.class" ] 470 classes = [ "android/view/MotionEvent.class" ]
480 } 471 }
481 472
482 generate_jar_jni("keyevent_jni_headers") { 473 generate_jar_jni("keyevent_jni_headers") {
483 jni_package = "ui" 474 jni_package = "ui"
484 classes = [ "android/view/KeyEvent.class" ] 475 classes = [ "android/view/KeyEvent.class" ]
485 } 476 }
486 } 477 }
OLDNEW
« no previous file with comments | « ui/base/ime/ui_base_ime.gyp ('k') | ui/events/events.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698