OLD | NEW |
---|---|
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 Loading... | |
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)', { |
Yuki
2013/12/11 09:31:14
Is there any chance to be use_ozone==1 but desktop
| |
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)', { |
Yuki
2013/12/11 09:31:14
Ditto.
| |
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 } |
OLD | NEW |