Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: ash/ash.gyp

Issue 169033003: try 3 of: Split out InputMethodMenuManager from InputMethodManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: re-uploaded with the fix Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | ash/ime/input_method_menu_item.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'chromium_code': 1, 7 'chromium_code': 1,
8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
9 }, 9 },
10 'includes': [ 10 'includes': [
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 'high_contrast/high_contrast_controller.h', 165 'high_contrast/high_contrast_controller.h',
166 'host/window_tree_host_factory.cc', 166 'host/window_tree_host_factory.cc',
167 'host/window_tree_host_factory.h', 167 'host/window_tree_host_factory.h',
168 'host/window_tree_host_factory_win.cc', 168 'host/window_tree_host_factory_win.cc',
169 'ime/candidate_view.cc', 169 'ime/candidate_view.cc',
170 'ime/candidate_view.h', 170 'ime/candidate_view.h',
171 'ime/candidate_window_view.cc', 171 'ime/candidate_window_view.cc',
172 'ime/candidate_window_view.h', 172 'ime/candidate_window_view.h',
173 'ime/infolist_window.cc', 173 'ime/infolist_window.cc',
174 'ime/infolist_window.h', 174 'ime/infolist_window.h',
175 'ime/input_method_menu_item.cc',
176 'ime/input_method_menu_item.h',
177 'ime/input_method_menu_manager.cc',
178 'ime/input_method_menu_manager.h',
175 'ime/mode_indicator_view.cc', 179 'ime/mode_indicator_view.cc',
176 'ime/mode_indicator_view.h', 180 'ime/mode_indicator_view.h',
177 'keyboard_uma_event_filter.cc', 181 'keyboard_uma_event_filter.cc',
178 'keyboard_uma_event_filter.h', 182 'keyboard_uma_event_filter.h',
179 'magnifier/magnification_controller.cc', 183 'magnifier/magnification_controller.cc',
180 'magnifier/magnification_controller.h', 184 'magnifier/magnification_controller.h',
181 'magnifier/magnifier_constants.h', 185 'magnifier/magnifier_constants.h',
182 'magnifier/partial_magnification_controller.cc', 186 'magnifier/partial_magnification_controller.cc',
183 'magnifier/partial_magnification_controller.h', 187 'magnifier/partial_magnification_controller.h',
184 'metrics/user_metrics_recorder.cc', 188 'metrics/user_metrics_recorder.cc',
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
849 'display/mouse_cursor_event_filter_unittest.cc', 853 'display/mouse_cursor_event_filter_unittest.cc',
850 'display/projecting_observer_chromeos_unittest.cc', 854 'display/projecting_observer_chromeos_unittest.cc',
851 'display/resolution_notification_controller_unittest.cc', 855 'display/resolution_notification_controller_unittest.cc',
852 'display/root_window_transformers_unittest.cc', 856 'display/root_window_transformers_unittest.cc',
853 'display/screen_position_controller_unittest.cc', 857 'display/screen_position_controller_unittest.cc',
854 'drag_drop/drag_drop_controller_unittest.cc', 858 'drag_drop/drag_drop_controller_unittest.cc',
855 'drag_drop/drag_drop_tracker_unittest.cc', 859 'drag_drop/drag_drop_tracker_unittest.cc',
856 'extended_desktop_unittest.cc', 860 'extended_desktop_unittest.cc',
857 'focus_cycler_unittest.cc', 861 'focus_cycler_unittest.cc',
858 'ime/candidate_window_view_unittest.cc', 862 'ime/candidate_window_view_unittest.cc',
863 'ime/input_method_menu_item_unittest.cc',
864 'ime/input_method_menu_manager_unittest.cc',
859 'keyboard_overlay/keyboard_overlay_delegate_unittest.cc', 865 'keyboard_overlay/keyboard_overlay_delegate_unittest.cc',
860 'keyboard_overlay/keyboard_overlay_view_unittest.cc', 866 'keyboard_overlay/keyboard_overlay_view_unittest.cc',
861 'magnifier/magnification_controller_unittest.cc', 867 'magnifier/magnification_controller_unittest.cc',
862 'root_window_controller_unittest.cc', 868 'root_window_controller_unittest.cc',
863 'screen_util_unittest.cc', 869 'screen_util_unittest.cc',
864 'screensaver/screensaver_view_unittest.cc', 870 'screensaver/screensaver_view_unittest.cc',
865 'session_state_delegate_stub.cc', 871 'session_state_delegate_stub.cc',
866 'session_state_delegate_stub.h', 872 'session_state_delegate_stub.h',
867 'shelf/scoped_observer_with_duplicated_sources_unittest.cc', 873 'shelf/scoped_observer_with_duplicated_sources_unittest.cc',
868 'shelf/shelf_layout_manager_unittest.cc', 874 'shelf/shelf_layout_manager_unittest.cc',
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1092 }, 1098 },
1093 }, 1099 },
1094 'dependencies': [ 1100 'dependencies': [
1095 '../sandbox/sandbox.gyp:sandbox', 1101 '../sandbox/sandbox.gyp:sandbox',
1096 ], 1102 ],
1097 }], 1103 }],
1098 ], 1104 ],
1099 }, 1105 },
1100 ], 1106 ],
1101 } 1107 }
OLDNEW
« no previous file with comments | « no previous file | ash/ime/input_method_menu_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698