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

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

Issue 100213003: Support for providing IMEContext with Ozone. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review fix: Sort files in alphabetical order Created 7 years 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
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 'character_composer.cc', 10 'character_composer.cc',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 ], 102 ],
103 }], 103 }],
104 ['OS!="win"', { 104 ['OS!="win"', {
105 'sources!': [ 105 'sources!': [
106 'input_method_imm32.cc', 106 'input_method_imm32.cc',
107 'input_method_imm32.h', 107 'input_method_imm32.h',
108 'input_method_tsf.cc', 108 'input_method_tsf.cc',
109 'input_method_tsf.h', 109 'input_method_tsf.h',
110 ], 110 ],
111 }], 111 }],
112 ['use_aura==0 or desktop_linux==0', { 112 ['use_aura==0 or (desktop_linux==0 and use_ozone==0)', {
rjkroege 2013/12/12 23:43:38 These two blocks have the same condition and seem
kalyank 2013/12/13 10:35:27 desktop_linux is set to false when chromeos=1 This
113 'sources!': [ 113 'sources!': [
114 'input_method_auralinux.cc', 114 'input_method_auralinux.cc',
115 'input_method_auralinux.h', 115 'input_method_auralinux.h',
116 ], 116 ],
117 }], 117 }],
118 ['use_aura==0 or desktop_linux==0', { 118 ['use_aura==0 or (desktop_linux==0 and use_ozone==0)', {
119 'sources!': [ 119 'sources!': [
120 'linux/fake_input_method_context.cc', 120 'linux/fake_input_method_context.cc',
121 'linux/fake_input_method_context.h', 121 'linux/fake_input_method_context.h',
122 'linux/fake_input_method_context_factory.cc', 122 'linux/fake_input_method_context_factory.cc',
123 'linux/fake_input_method_context_factory.h', 123 'linux/fake_input_method_context_factory.h',
124 'linux/linux_input_method_context.h', 124 'linux/linux_input_method_context.h',
125 'linux/linux_input_method_context_factory.cc', 125 'linux/linux_input_method_context_factory.cc',
126 'linux/linux_input_method_context_factory.h', 126 'linux/linux_input_method_context_factory.h',
127 ], 127 ],
128 }], 128 }],
129 ['use_x11==0', { 129 ['use_x11==0', {
130 'sources!': [ 130 'sources!': [
131 'composition_text_util_pango.cc', 131 'composition_text_util_pango.cc',
132 'composition_text_util_pango.h', 132 'composition_text_util_pango.h',
133 ], 133 ],
134 }], 134 }],
135 ], 135 ],
136 } 136 }
OLDNEW
« no previous file with comments | « no previous file | ui/base/ime/input_method_factory.cc » ('j') | ui/ozone/ime/fake_input_method_context_ozone.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698