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 'variables': { | 6 'variables': { |
7 'ime_files': [ | 7 'ime_files': [ |
8 'character_composer.cc', | 8 'character_composer.cc', |
9 'character_composer.h', | 9 'character_composer.h', |
10 'composition_text.cc', | 10 'composition_text.cc', |
11 'composition_text.h', | 11 'composition_text.h', |
12 'composition_underline.h', | 12 'composition_underline.h', |
13 'ibus_client.cc', | |
14 'ibus_client.h', | |
15 'input_method.h', | 13 'input_method.h', |
16 'input_method_base.cc', | 14 'input_method_base.cc', |
17 'input_method_base.h', | 15 'input_method_base.h', |
18 'input_method_delegate.h', | 16 'input_method_delegate.h', |
19 'input_method_factory.cc', | 17 'input_method_factory.cc', |
20 'input_method_factory.h', | 18 'input_method_factory.h', |
21 'input_method_ibus.cc', | 19 'input_method_ibus.cc', |
22 'input_method_ibus.h', | 20 'input_method_ibus.h', |
23 'input_method_win.cc', | 21 'input_method_win.cc', |
24 'input_method_win.h', | 22 'input_method_win.h', |
(...skipping 27 matching lines...) Expand all Loading... |
52 # gtk_im_context_util* use ui::CompositionText. | 50 # gtk_im_context_util* use ui::CompositionText. |
53 ['include', 'composition_text\\.(cc|h)$'], | 51 ['include', 'composition_text\\.(cc|h)$'], |
54 # native_textfield_views* use ui::TextInputClient. | 52 # native_textfield_views* use ui::TextInputClient. |
55 ['include', 'text_input_client\\.(cc|h)$'], | 53 ['include', 'text_input_client\\.(cc|h)$'], |
56 ], | 54 ], |
57 }], | 55 }], |
58 ['chromeos==0', { | 56 ['chromeos==0', { |
59 'sources!': [ | 57 'sources!': [ |
60 'character_composer.cc', | 58 'character_composer.cc', |
61 'character_composer.h', | 59 'character_composer.h', |
62 'ibus_client.cc', | |
63 'ibus_client.h', | |
64 'input_method_ibus.cc', | 60 'input_method_ibus.cc', |
65 'input_method_ibus.h', | 61 'input_method_ibus.h', |
66 ], | 62 ], |
67 }, { | 63 }, { |
68 'dependencies': [ | 64 'dependencies': [ |
69 '<(DEPTH)/chromeos/chromeos.gyp:chromeos', | 65 '<(DEPTH)/chromeos/chromeos.gyp:chromeos', |
70 ], | 66 ], |
71 }], | 67 }], |
72 ['OS!="win"', { | 68 ['OS!="win"', { |
73 'sources!': [ | 69 'sources!': [ |
74 '<@(tsf_files)', | 70 '<@(tsf_files)', |
75 ], | 71 ], |
76 }], | 72 }], |
77 ], | 73 ], |
78 } | 74 } |
OLD | NEW |