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

Side by Side Diff: ui/base/ime/ime.gypi

Issue 149073009: Remove InputMethodTSF, TSFEventRouter, TSFTextStore, TSFBridge (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert input_method_imm32 changes Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | ui/base/ime/ime_test_support.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'dependencies' : [ 6 'dependencies' : [
7 '<(DEPTH)/ui/events/events.gyp:events', 7 '<(DEPTH)/ui/events/events.gyp:events',
8 ], 8 ],
9 'sources': [ 9 'sources': [
10 'candidate_window.cc', 10 'candidate_window.cc',
(...skipping 27 matching lines...) Expand all
38 'input_method_chromeos.h', 38 'input_method_chromeos.h',
39 'input_method_imm32.cc', 39 'input_method_imm32.cc',
40 'input_method_imm32.h', 40 'input_method_imm32.h',
41 'input_method_initializer.cc', 41 'input_method_initializer.cc',
42 'input_method_initializer.h', 42 'input_method_initializer.h',
43 'input_method_auralinux.cc', 43 'input_method_auralinux.cc',
44 'input_method_auralinux.h', 44 'input_method_auralinux.h',
45 'input_method_minimal.cc', 45 'input_method_minimal.cc',
46 'input_method_minimal.h', 46 'input_method_minimal.h',
47 'input_method_observer.h', 47 'input_method_observer.h',
48 'input_method_tsf.cc',
49 'input_method_tsf.h',
50 'input_method_win.cc', 48 'input_method_win.cc',
51 'input_method_win.h', 49 'input_method_win.h',
52 'linux/fake_input_method_context.cc', 50 'linux/fake_input_method_context.cc',
53 'linux/fake_input_method_context.h', 51 'linux/fake_input_method_context.h',
54 'linux/fake_input_method_context_factory.cc', 52 'linux/fake_input_method_context_factory.cc',
55 'linux/fake_input_method_context_factory.h', 53 'linux/fake_input_method_context_factory.h',
56 'linux/linux_input_method_context.h', 54 'linux/linux_input_method_context.h',
57 'linux/linux_input_method_context_factory.cc', 55 'linux/linux_input_method_context_factory.cc',
58 'linux/linux_input_method_context_factory.h', 56 'linux/linux_input_method_context_factory.h',
59 'mock_input_method.cc', 57 'mock_input_method.cc',
60 'mock_input_method.h', 58 'mock_input_method.h',
61 'remote_input_method_delegate_win.h', 59 'remote_input_method_delegate_win.h',
62 'remote_input_method_win.cc', 60 'remote_input_method_win.cc',
63 'remote_input_method_win.h', 61 'remote_input_method_win.h',
64 'text_input_client.cc', 62 'text_input_client.cc',
65 'text_input_client.h', 63 'text_input_client.h',
66 'text_input_type.h', 64 'text_input_type.h',
67 'win/imm32_manager.cc', 65 'win/imm32_manager.cc',
68 'win/imm32_manager.h', 66 'win/imm32_manager.h',
69 'win/tsf_bridge.cc',
70 'win/tsf_bridge.h',
71 'win/tsf_event_router.cc',
72 'win/tsf_event_router.h',
73 'win/tsf_input_scope.cc', 67 'win/tsf_input_scope.cc',
74 'win/tsf_input_scope.h', 68 'win/tsf_input_scope.h',
75 'win/tsf_text_store.cc',
76 'win/tsf_text_store.h',
77 ], 69 ],
78 'conditions': [ 70 'conditions': [
79 ['toolkit_views==0 and use_aura==0', { 71 ['toolkit_views==0 and use_aura==0', {
80 'sources!': [ 72 'sources!': [
81 'input_method_factory.cc', 73 'input_method_factory.cc',
82 'input_method_factory.h', 74 'input_method_factory.h',
83 'input_method_minimal.cc', 75 'input_method_minimal.cc',
84 'input_method_minimal.h', 76 'input_method_minimal.h',
85 ], 77 ],
86 }], 78 }],
87 ['chromeos==0 or use_x11==0', { 79 ['chromeos==0 or use_x11==0', {
88 'sources!': [ 80 'sources!': [
89 'input_method_chromeos.cc', 81 'input_method_chromeos.cc',
90 'input_method_chromeos.h', 82 'input_method_chromeos.h',
91 ], 83 ],
92 }], 84 }],
93 ['chromeos==1', { 85 ['chromeos==1', {
94 'dependencies': [ 86 'dependencies': [
95 '<(DEPTH)/chromeos/chromeos.gyp:chromeos', 87 '<(DEPTH)/chromeos/chromeos.gyp:chromeos',
96 ], 88 ],
97 }], 89 }],
98 ['OS!="win"', { 90 ['OS!="win"', {
99 'sources!': [ 91 'sources!': [
100 'input_method_imm32.cc', 92 'input_method_imm32.cc',
101 'input_method_imm32.h', 93 'input_method_imm32.h',
102 'input_method_tsf.cc',
103 'input_method_tsf.h',
104 ], 94 ],
105 }], 95 }],
106 ['use_aura==0 or (desktop_linux==0 and use_ozone==0)', { 96 ['use_aura==0 or (desktop_linux==0 and use_ozone==0)', {
107 'sources!': [ 97 'sources!': [
108 'input_method_auralinux.cc', 98 'input_method_auralinux.cc',
109 'input_method_auralinux.h', 99 'input_method_auralinux.h',
110 'linux/fake_input_method_context.cc', 100 'linux/fake_input_method_context.cc',
111 'linux/fake_input_method_context.h', 101 'linux/fake_input_method_context.h',
112 'linux/fake_input_method_context_factory.cc', 102 'linux/fake_input_method_context_factory.cc',
113 'linux/fake_input_method_context_factory.h', 103 'linux/fake_input_method_context_factory.h',
114 'linux/linux_input_method_context.h', 104 'linux/linux_input_method_context.h',
115 'linux/linux_input_method_context_factory.cc', 105 'linux/linux_input_method_context_factory.cc',
116 'linux/linux_input_method_context_factory.h', 106 'linux/linux_input_method_context_factory.h',
117 ], 107 ],
118 }], 108 }],
119 ['use_x11==0', { 109 ['use_x11==0', {
120 'sources!': [ 110 'sources!': [
121 'composition_text_util_pango.cc', 111 'composition_text_util_pango.cc',
122 'composition_text_util_pango.h', 112 'composition_text_util_pango.h',
123 ], 113 ],
124 }], 114 }],
125 ], 115 ],
126 } 116 }
OLDNEW
« no previous file with comments | « no previous file | ui/base/ime/ime_test_support.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698