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

Side by Side Diff: ui/base/ui_base.gyp

Issue 643193003: Support InputMethodManager#updateCursorAnchorInfo for Android 5.0 (C++ version) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Send ImeCompositionRangeChanged only when necessary Created 5 years, 10 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/android/cursor_anchor_info_sender.h ('k') | ui/base/ui_base_switches.h » ('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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 'idle/idle.cc', 194 'idle/idle.cc',
195 'idle/idle_chromeos.cc', 195 'idle/idle_chromeos.cc',
196 'idle/idle.h', 196 'idle/idle.h',
197 'idle/idle_linux.cc', 197 'idle/idle_linux.cc',
198 'idle/idle_mac.mm', 198 'idle/idle_mac.mm',
199 'idle/idle_query_x11.cc', 199 'idle/idle_query_x11.cc',
200 'idle/idle_query_x11.h', 200 'idle/idle_query_x11.h',
201 'idle/idle_win.cc', 201 'idle/idle_win.cc',
202 'idle/screensaver_window_finder_x11.cc', 202 'idle/screensaver_window_finder_x11.cc',
203 'idle/screensaver_window_finder_x11.h', 203 'idle/screensaver_window_finder_x11.h',
204 'ime/android/cursor_anchor_info_builder.cc',
205 'ime/android/cursor_anchor_info_builder.h',
206 'ime/android/cursor_anchor_info_controller.cc',
207 'ime/android/cursor_anchor_info_controller.h',
208 'ime/android/cursor_anchor_info_sender.h',
204 'ime/candidate_window.cc', 209 'ime/candidate_window.cc',
205 'ime/candidate_window.h', 210 'ime/candidate_window.h',
206 'ime/chromeos/character_composer.cc', 211 'ime/chromeos/character_composer.cc',
207 'ime/chromeos/character_composer.h', 212 'ime/chromeos/character_composer.h',
208 'ime/chromeos/component_extension_ime_manager.cc', 213 'ime/chromeos/component_extension_ime_manager.cc',
209 'ime/chromeos/component_extension_ime_manager.h', 214 'ime/chromeos/component_extension_ime_manager.h',
210 'ime/chromeos/composition_text.cc', 215 'ime/chromeos/composition_text.cc',
211 'ime/chromeos/composition_text.h', 216 'ime/chromeos/composition_text.h',
212 'ime/chromeos/extension_ime_util.cc', 217 'ime/chromeos/extension_ime_util.cc',
213 'ime/chromeos/extension_ime_util.h', 218 'ime/chromeos/extension_ime_util.h',
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 'idle/idle.h', 666 'idle/idle.h',
662 'l10n/l10n_font_util.cc', 667 'l10n/l10n_font_util.cc',
663 'models/button_menu_item_model.cc', 668 'models/button_menu_item_model.cc',
664 'models/dialog_model.cc', 669 'models/dialog_model.cc',
665 'theme_provider.cc', 670 'theme_provider.cc',
666 'touch/touch_device.cc', 671 'touch/touch_device.cc',
667 'touch/touch_editing_controller.cc', 672 'touch/touch_editing_controller.cc',
668 'ui_base_types.cc', 673 'ui_base_types.cc',
669 ], 674 ],
670 'dependencies': [ 675 'dependencies': [
676 '../../cc/cc.gyp:cc',
671 'ui_base_jni_headers', 677 'ui_base_jni_headers',
672 ], 678 ],
673 'link_settings': { 679 'link_settings': {
674 'libraries': [ 680 'libraries': [
675 '-ljnigraphics', 681 '-ljnigraphics',
676 ], 682 ],
677 }, 683 },
678 }], 684 }],
679 ['OS=="android" and android_webview_build==0', { 685 ['OS=="android" and android_webview_build==0', {
680 'dependencies': [ 686 'dependencies': [
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
807 'conditions': [ 813 'conditions': [
808 ['OS=="android"' , { 814 ['OS=="android"' , {
809 'targets': [ 815 'targets': [
810 { 816 {
811 # GN version: //ui/base:ui_base_jni_headers 817 # GN version: //ui/base:ui_base_jni_headers
812 'target_name': 'ui_base_jni_headers', 818 'target_name': 'ui_base_jni_headers',
813 'type': 'none', 819 'type': 'none',
814 'sources': [ 820 'sources': [
815 # Note: file list duplicated in GN build. 821 # Note: file list duplicated in GN build.
816 '../android/java/src/org/chromium/ui/base/Clipboard.java', 822 '../android/java/src/org/chromium/ui/base/Clipboard.java',
823 '../android/java/src/org/chromium/ui/base/CursorAnchorInfoBuilder.j ava',
817 '../android/java/src/org/chromium/ui/base/DeviceFormFactor.java', 824 '../android/java/src/org/chromium/ui/base/DeviceFormFactor.java',
818 '../android/java/src/org/chromium/ui/base/LocalizationUtils.java', 825 '../android/java/src/org/chromium/ui/base/LocalizationUtils.java',
819 '../android/java/src/org/chromium/ui/base/ResourceBundle.java', 826 '../android/java/src/org/chromium/ui/base/ResourceBundle.java',
820 '../android/java/src/org/chromium/ui/base/SelectFileDialog.java', 827 '../android/java/src/org/chromium/ui/base/SelectFileDialog.java',
821 '../android/java/src/org/chromium/ui/base/TouchDevice.java', 828 '../android/java/src/org/chromium/ui/base/TouchDevice.java',
822 '../android/java/src/org/chromium/ui/base/ViewAndroid.java', 829 '../android/java/src/org/chromium/ui/base/ViewAndroid.java',
823 '../android/java/src/org/chromium/ui/base/WindowAndroid.java', 830 '../android/java/src/org/chromium/ui/base/WindowAndroid.java',
824 ], 831 ],
825 'variables': { 832 'variables': {
826 'jni_gen_package': 'ui', 833 'jni_gen_package': 'ui',
827 }, 834 },
828 'includes': [ '../../build/jni_generator.gypi' ], 835 'includes': [ '../../build/jni_generator.gypi' ],
829 }, 836 },
830 ], 837 ],
831 }], 838 }],
832 ], 839 ],
833 } 840 }
OLDNEW
« no previous file with comments | « ui/base/ime/android/cursor_anchor_info_sender.h ('k') | ui/base/ui_base_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698