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 'chromeos/character_composer.cc', |
11 'character_composer.h', | 11 'chromeos/character_composer.h', |
12 'chromeos/ibus_bridge.cc', | 12 'chromeos/ibus_bridge.cc', |
13 'chromeos/ibus_bridge.h', | 13 'chromeos/ibus_bridge.h', |
14 'chromeos/mock_ime_candidate_window_handler.cc', | 14 'chromeos/mock_ime_candidate_window_handler.cc', |
15 'chromeos/mock_ime_candidate_window_handler.h', | 15 'chromeos/mock_ime_candidate_window_handler.h', |
16 'chromeos/mock_ime_engine_handler.cc', | 16 'chromeos/mock_ime_engine_handler.cc', |
17 'chromeos/mock_ime_engine_handler.h', | 17 'chromeos/mock_ime_engine_handler.h', |
18 'chromeos/mock_ime_input_context_handler.cc', | 18 'chromeos/mock_ime_input_context_handler.cc', |
19 'chromeos/mock_ime_input_context_handler.h', | 19 'chromeos/mock_ime_input_context_handler.h', |
20 'composition_text.cc', | 20 'composition_text.cc', |
21 'composition_text.h', | 21 'composition_text.h', |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
75 ['toolkit_views==0 and use_aura==0', { | 75 ['toolkit_views==0 and use_aura==0', { |
76 'sources!': [ | 76 'sources!': [ |
77 'input_method_factory.cc', | 77 'input_method_factory.cc', |
78 'input_method_factory.h', | 78 'input_method_factory.h', |
79 'input_method_minimal.cc', | 79 'input_method_minimal.cc', |
80 'input_method_minimal.h', | 80 'input_method_minimal.h', |
81 ], | 81 ], |
82 }], | 82 }], |
83 ['chromeos==0 or use_x11==0', { | 83 ['chromeos==0 or use_x11==0', { |
84 'sources!': [ | 84 'sources!': [ |
85 'character_composer.cc', | 85 'chromeos/character_composer.cc', |
86 'character_composer.h', | 86 'chromeos/character_composer.h', |
Yuki
2013/12/09 02:25:00
'chromeos' directory is automatically removed from
yoichio
2013/12/09 04:08:35
Thanks. I will fix later.
| |
87 » 'chromeos/ibus_bridge.cc', | 87 'chromeos/ibus_bridge.cc', |
88 'chromeos/ibus_bridge.h', | 88 'chromeos/ibus_bridge.h', |
89 » 'chromeos/mock_ime_candidate_window_handler.cc', | 89 'chromeos/mock_ime_candidate_window_handler.cc', |
90 'chromeos/mock_ime_candidate_window_handler.h', | 90 'chromeos/mock_ime_candidate_window_handler.h', |
91 'chromeos/mock_ime_engine_handler.cc', | 91 'chromeos/mock_ime_engine_handler.cc', |
92 'chromeos/mock_ime_engine_handler.h', | 92 'chromeos/mock_ime_engine_handler.h', |
93 'chromeos/mock_ime_input_context_handler.cc', | 93 'chromeos/mock_ime_input_context_handler.cc', |
94 'chromeos/mock_ime_input_context_handler.h', | 94 'chromeos/mock_ime_input_context_handler.h', |
95 'input_method_ibus.cc', | 95 'input_method_ibus.cc', |
96 'input_method_ibus.h', | 96 'input_method_ibus.h', |
97 ], | 97 ], |
98 }], | 98 }], |
99 ['chromeos==1', { | 99 ['chromeos==1', { |
(...skipping 27 matching lines...) Expand all Loading... | |
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 |