| 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 18 matching lines...) Expand all Loading... |
| 29 'input_method_base.h', | 29 'input_method_base.h', |
| 30 'input_method_delegate.h', | 30 'input_method_delegate.h', |
| 31 'input_method_factory.cc', | 31 'input_method_factory.cc', |
| 32 'input_method_factory.h', | 32 'input_method_factory.h', |
| 33 'input_method_ibus.cc', | 33 'input_method_ibus.cc', |
| 34 'input_method_ibus.h', | 34 'input_method_ibus.h', |
| 35 'input_method_imm32.cc', | 35 'input_method_imm32.cc', |
| 36 'input_method_imm32.h', | 36 'input_method_imm32.h', |
| 37 'input_method_initializer.cc', | 37 'input_method_initializer.cc', |
| 38 'input_method_initializer.h', | 38 'input_method_initializer.h', |
| 39 'input_method_linux_x11.cc', | 39 'input_method_auralinux.cc', |
| 40 'input_method_linux_x11.h', | 40 'input_method_auralinux.h', |
| 41 'input_method_minimal.cc', | 41 'input_method_minimal.cc', |
| 42 'input_method_minimal.h', | 42 'input_method_minimal.h', |
| 43 'input_method_observer.h', | 43 'input_method_observer.h', |
| 44 'input_method_tsf.cc', | 44 'input_method_tsf.cc', |
| 45 'input_method_tsf.h', | 45 'input_method_tsf.h', |
| 46 'input_method_win.cc', | 46 'input_method_win.cc', |
| 47 'input_method_win.h', | 47 'input_method_win.h', |
| 48 'linux/fake_input_method_context.cc', | 48 'linux/fake_input_method_context.cc', |
| 49 'linux/fake_input_method_context.h', | 49 'linux/fake_input_method_context.h', |
| 50 'linux/fake_input_method_context_factory.cc', | 50 'linux/fake_input_method_context_factory.cc', |
| (...skipping 51 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 use_x11==0 or desktop_linux==0', { | 112 ['use_aura==0 or desktop_linux==0', { |
| 113 'sources!': [ | 113 'sources!': [ |
| 114 'input_method_linux_x11.cc', | 114 'input_method_auralinux.cc', |
| 115 'input_method_linux_x11.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', { |
| 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 |