OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'dependencies' : [ | |
7 '<(DEPTH)/ui/events/events.gyp:events', | |
8 ], | |
9 'sources': [ | |
10 'candidate_window.cc', | |
11 'candidate_window.h', | |
12 'chromeos/character_composer.cc', | |
13 'chromeos/character_composer.h', | |
14 'chromeos/ime_bridge.cc', | |
15 'chromeos/ime_bridge.h', | |
16 'chromeos/ime_keymap.cc', | |
17 'chromeos/ime_keymap.h', | |
18 'chromeos/mock_ime_candidate_window_handler.cc', | |
19 'chromeos/mock_ime_candidate_window_handler.h', | |
20 'chromeos/mock_ime_engine_handler.cc', | |
21 'chromeos/mock_ime_engine_handler.h', | |
22 'chromeos/mock_ime_input_context_handler.cc', | |
23 'chromeos/mock_ime_input_context_handler.h', | |
24 'composition_text.cc', | |
25 'composition_text.h', | |
26 'composition_text_util_pango.cc', | |
27 'composition_text_util_pango.h', | |
28 'composition_underline.h', | |
29 'dummy_input_method_delegate.cc', | |
30 'dummy_input_method_delegate.h', | |
31 'infolist_entry.cc', | |
32 'infolist_entry.h', | |
33 'input_method.h', | |
34 'input_method_auralinux.cc', | |
35 'input_method_auralinux.h', | |
36 'input_method_base.cc', | |
37 'input_method_base.h', | |
38 'input_method_chromeos.cc', | |
39 'input_method_chromeos.h', | |
40 'input_method_delegate.h', | |
41 'input_method_factory.cc', | |
42 'input_method_factory.h', | |
43 'input_method_initializer.cc', | |
44 'input_method_initializer.h', | |
45 'input_method_mac.h', | |
46 'input_method_mac.mm', | |
47 'input_method_minimal.cc', | |
48 'input_method_minimal.h', | |
49 'input_method_observer.h', | |
50 'input_method_win.cc', | |
51 'input_method_win.h', | |
52 'linux/fake_input_method_context.cc', | |
53 'linux/fake_input_method_context.h', | |
54 'linux/fake_input_method_context_factory.cc', | |
55 'linux/fake_input_method_context_factory.h', | |
56 'linux/linux_input_method_context.h', | |
57 'linux/linux_input_method_context_factory.cc', | |
58 'linux/linux_input_method_context_factory.h', | |
59 'mock_input_method.cc', | |
60 'mock_input_method.h', | |
61 'remote_input_method_delegate_win.h', | |
62 'remote_input_method_win.cc', | |
63 'remote_input_method_win.h', | |
64 'text_input_client.cc', | |
65 'text_input_client.h', | |
66 'text_input_focus_manager.cc', | |
67 'text_input_focus_manager.h', | |
68 'text_input_type.h', | |
69 'win/imm32_manager.cc', | |
70 'win/imm32_manager.h', | |
71 'win/tsf_input_scope.cc', | |
72 'win/tsf_input_scope.h', | |
73 ], | |
74 'conditions': [ | |
75 ['toolkit_views==0 and use_aura==0', { | |
76 'sources!': [ | |
77 'input_method_factory.cc', | |
78 'input_method_factory.h', | |
79 'input_method_minimal.cc', | |
80 'input_method_minimal.h', | |
81 ], | |
82 }], | |
83 ['chromeos==0 or use_x11==0', { | |
84 'sources!': [ | |
85 'input_method_chromeos.cc', | |
86 'input_method_chromeos.h', | |
87 ], | |
88 }], | |
89 ['chromeos==1', { | |
90 'dependencies': [ | |
91 '<(DEPTH)/chromeos/chromeos.gyp:chromeos', | |
92 ], | |
93 }], | |
94 ['OS!="win"', { | |
95 'sources!': [ | |
96 'input_method_imm32.cc', | |
97 'input_method_imm32.h', | |
98 ], | |
99 }], | |
100 ['use_aura==0 or (desktop_linux==0 and use_ozone==0)', { | |
101 'sources!': [ | |
102 'input_method_auralinux.cc', | |
103 'input_method_auralinux.h', | |
104 'linux/fake_input_method_context.cc', | |
105 'linux/fake_input_method_context.h', | |
106 'linux/fake_input_method_context_factory.cc', | |
107 'linux/fake_input_method_context_factory.h', | |
108 'linux/linux_input_method_context.h', | |
109 'linux/linux_input_method_context_factory.cc', | |
110 'linux/linux_input_method_context_factory.h', | |
111 ], | |
112 }], | |
113 ['use_x11==0', { | |
114 'sources!': [ | |
115 'composition_text_util_pango.cc', | |
116 'composition_text_util_pango.h', | |
117 'chromeos/character_composer.cc', | |
118 'chromeos/character_composer.h', | |
119 ], | |
120 }], | |
121 ['OS=="android"', { | |
122 'dependencies!' : [ | |
123 '<(DEPTH)/ui/events/events.gyp:events', | |
124 ], | |
125 }] | |
126 ], | |
127 } | |
OLD | NEW |