OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'ui_chromeos_ime_model_sources': [ | |
9 'ime/component_extension_ime_manager.cc', | |
10 'ime/component_extension_ime_manager.h', | |
11 'ime/composition_text.cc', | |
12 'ime/composition_text.h', | |
13 'ime/extension_ime_util.cc', | |
14 'ime/extension_ime_util.h', | |
15 'ime/fake_ime_keyboard.cc', | |
16 'ime/fake_ime_keyboard.h', | |
17 'ime/ime_keyboard.cc', | |
18 'ime/ime_keyboard.h', | |
19 'ime/ime_keyboard_ozone.cc', | |
20 'ime/ime_keyboard_ozone.h', | |
21 'ime/ime_keyboard_x11.cc', | |
22 'ime/ime_keyboard_x11.h', | |
23 'ime/input_method_delegate.h', | |
24 'ime/input_method_descriptor.cc', | |
25 'ime/input_method_descriptor.h', | |
26 'ime/input_method_manager.cc', | |
27 'ime/input_method_manager.h', | |
28 'ime/input_method_whitelist.cc', | |
29 'ime/input_method_whitelist.h', | |
30 ], | |
31 'ui_chromeos_ime_view_sources': [ | |
32 'ime/view/candidate_view.cc', | |
33 'ime/view/candidate_view.h', | |
34 'ime/view/candidate_window_view.cc', | |
35 'ime/view/candidate_window_view.h', | |
36 'ime/view/infolist_window.cc', | |
37 'ime/view/infolist_window.h', | |
38 'ime/view/input_method_menu_item.cc', | |
39 'ime/view/input_method_menu_item.h', | |
40 'ime/view/input_method_menu_manager.cc', | |
41 'ime/view/input_method_menu_manager.h', | |
42 'ime/view/mode_indicator_view.cc', | |
43 'ime/view/mode_indicator_view.h', | |
44 ], | |
45 'ui_chromeos_sources': [ | |
46 'accessibility_types.h', | |
47 'network/network_connect.cc', | |
48 'network/network_connect.h', | |
49 'network/network_icon.cc', | |
50 'network/network_icon.h', | |
51 'network/network_icon_animation.cc', | |
52 'network/network_icon_animation.h', | |
53 'network/network_icon_animation_observer.h', | |
54 'network/network_info.cc', | |
55 'network/network_info.h', | |
56 'network/network_list.cc', | |
57 'network/network_list.h', | |
58 'network/network_list_delegate.h', | |
59 'network/network_state_notifier.cc', | |
60 'network/network_state_notifier.h', | |
61 'touch_exploration_controller.cc', | |
62 'touch_exploration_controller.h', | |
63 'user_activity_power_manager_notifier.cc', | |
64 'user_activity_power_manager_notifier.h', | |
65 '<@(ui_chromeos_ime_model_sources', | |
66 '<@(ui_chromeos_ime_view_sources', | |
67 ], | |
8 }, | 68 }, |
9 'targets': [ | 69 'targets': [ |
10 { | 70 { |
11 'target_name': 'ui_chromeos_resources', | 71 'target_name': 'ui_chromeos_resources', |
12 'type': 'none', | 72 'type': 'none', |
13 'variables': { | 73 'variables': { |
14 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/chromeos/resources', | 74 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/chromeos/resources', |
15 }, | 75 }, |
16 'actions': [ | 76 'actions': [ |
17 { | 77 { |
(...skipping 17 matching lines...) Expand all Loading... | |
35 'action_name': 'generate_ui_chromeos_strings', | 95 'action_name': 'generate_ui_chromeos_strings', |
36 'variables': { | 96 'variables': { |
37 'grit_grd_file': 'ui_chromeos_strings.grd', | 97 'grit_grd_file': 'ui_chromeos_strings.grd', |
38 }, | 98 }, |
39 'includes': [ '../../build/grit_action.gypi' ], | 99 'includes': [ '../../build/grit_action.gypi' ], |
40 }, | 100 }, |
41 ], | 101 ], |
42 'includes': [ '../../build/grit_target.gypi' ], | 102 'includes': [ '../../build/grit_target.gypi' ], |
43 }, # target_name: ui_chromeos_strings | 103 }, # target_name: ui_chromeos_strings |
44 { | 104 { |
105 'target_name': 'ui_chromeos_ime', | |
106 'type': '<(component)', | |
107 'dependencies': [ | |
108 '../../base/base.gyp:base', | |
109 '../../skia/skia.gyp:skia', | |
110 '../../chromeos/chromeos.gyp:chromeos', | |
stevenjb
2014/11/19 18:57:38
Does ui_chromeos_ime actually depend on chromeos/
Shu Chen
2014/11/20 01:04:44
Yes, it depends on the generated header: chromeos/
| |
111 ], | |
112 'sources': [ '<@(ui_chromeos_ime_model_sources)' ], | |
113 'conditions': [ | |
114 ['use_x11 == 1', { | |
115 'dependencies': [ | |
116 '../../build/linux/system.gyp:x11', | |
117 '../gfx/x/gfx_x11.gyp:gfx_x11', | |
118 ], | |
119 }], | |
120 ], | |
121 }, # target_name: ui_chromeos_ime | |
122 { | |
123 'target_name': 'ui_chromeos_ime_view', | |
124 'type': '<(component)', | |
125 'dependencies': [ | |
126 '../../base/base.gyp:base', | |
127 '../../skia/skia.gyp:skia', | |
128 '../views/views.gyp:views', | |
129 '../wm/wm.gyp:wm', | |
130 ], | |
131 'sources': [ '<@(ui_chromeos_ime_view_sources)' ], | |
132 }, # target_name: ui_chromeos_ime_view | |
133 { | |
45 'target_name': 'ui_chromeos', | 134 'target_name': 'ui_chromeos', |
46 'type': '<(component)', | 135 'type': '<(component)', |
47 'dependencies': [ | 136 'dependencies': [ |
48 '../../base/base.gyp:base', | |
49 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', | 137 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', |
50 '../../chromeos/chromeos.gyp:power_manager_proto', | 138 '../../chromeos/chromeos.gyp:power_manager_proto', |
51 '../../skia/skia.gyp:skia', | 139 '../../skia/skia.gyp:skia', |
52 '../aura/aura.gyp:aura', | 140 '../aura/aura.gyp:aura', |
53 '../events/events.gyp:events', | 141 '../events/events.gyp:events', |
54 '../events/events.gyp:gesture_detection', | 142 '../events/events.gyp:gesture_detection', |
55 '../message_center/message_center.gyp:message_center', | 143 '../message_center/message_center.gyp:message_center', |
56 '../views/views.gyp:views', | 144 'ui_chromeos_ime', |
57 '../wm/wm.gyp:wm', | 145 'ui_chromeos_ime_view', |
58 'ui_chromeos_resources', | 146 'ui_chromeos_resources', |
59 'ui_chromeos_strings', | 147 'ui_chromeos_strings', |
60 ], | 148 ], |
61 'defines': [ | 149 'defines': [ |
62 'UI_CHROMEOS_IMPLEMENTATION', | 150 'UI_CHROMEOS_IMPLEMENTATION', |
63 ], | 151 ], |
152 'sources': [ '<@(ui_chromeos_sources)' ], | |
153 }, # target_name: ui_chromeos | |
154 { | |
155 'target_name': 'ui_chromeos_ime_test_support', | |
156 'type': 'static_library', | |
157 'dependencies': [ | |
158 'ui_chromeos_ime', | |
159 ], | |
64 'sources': [ | 160 'sources': [ |
65 'accessibility_types.h', | 161 '../chromeos/ime/mock_component_extension_ime_manager_delegate.cc', |
66 'ime/candidate_view.cc', | 162 '../chromeos/ime/mock_component_extension_ime_manager_delegate.h', |
67 'ime/candidate_view.h', | 163 '../chromeos/ime/fake_input_method_delegate.cc', |
68 'ime/candidate_window_view.cc', | 164 '../chromeos/ime/fake_input_method_delegate.h', |
69 'ime/candidate_window_view.h', | |
70 'ime/infolist_window.cc', | |
71 'ime/infolist_window.h', | |
72 'ime/input_method_menu_item.cc', | |
73 'ime/input_method_menu_item.h', | |
74 'ime/input_method_menu_manager.cc', | |
75 'ime/input_method_menu_manager.h', | |
76 'ime/mode_indicator_view.cc', | |
77 'ime/mode_indicator_view.h', | |
78 'network/network_connect.cc', | |
79 'network/network_connect.h', | |
80 'network/network_icon.cc', | |
81 'network/network_icon.h', | |
82 'network/network_icon_animation.cc', | |
83 'network/network_icon_animation.h', | |
84 'network/network_icon_animation_observer.h', | |
85 'network/network_info.cc', | |
86 'network/network_info.h', | |
87 'network/network_list.cc', | |
88 'network/network_list.h', | |
89 'network/network_list_delegate.h', | |
90 'network/network_state_notifier.cc', | |
91 'network/network_state_notifier.h', | |
92 'touch_exploration_controller.cc', | |
93 'touch_exploration_controller.h', | |
94 'user_activity_power_manager_notifier.cc', | |
95 'user_activity_power_manager_notifier.h', | |
96 ], | 165 ], |
97 }, # target_name: ui_chromeos | 166 }, # target_name: ui_chromeos_ime_test_support |
98 ], | 167 ], |
99 } | 168 } |
OLD | NEW |