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

Side by Side Diff: ui/chromeos/ui_chromeos.gyp

Issue 727143002: Moves code from chromeos/ime to ui/base/ime/chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
OLDNEW
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_sources': [
9 'accessibility_types.h',
10 'ime/component_extension_ime_manager.cc',
11 'ime/component_extension_ime_manager.h',
12 'ime/composition_text.cc',
13 'ime/composition_text.h',
14 'ime/extension_ime_util.cc',
15 'ime/extension_ime_util.h',
16 'ime/fake_ime_keyboard.cc',
17 'ime/fake_ime_keyboard.h',
18 'ime/ime_keyboard.cc',
19 'ime/ime_keyboard.h',
20 'ime/ime_keyboard_ozone.cc',
21 'ime/ime_keyboard_ozone.h',
22 'ime/ime_keyboard_x11.cc',
23 'ime/ime_keyboard_x11.h',
24 'ime/input_method_delegate.h',
25 'ime/input_method_descriptor.cc',
26 'ime/input_method_descriptor.h',
27 'ime/input_method_manager.cc',
28 'ime/input_method_manager.h',
29 'ime/input_method_whitelist.cc',
30 'ime/input_method_whitelist.h',
31
Yuki 2014/11/19 14:16:43 No need to separate by an empty line.
Shu Chen 2014/11/19 16:40:53 Done.
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
Yuki 2014/11/19 14:16:43 No need to separate by an empty line.
Shu Chen 2014/11/19 16:40:53 Done.
45 'network/network_connect.cc',
46 'network/network_connect.h',
47 'network/network_icon.cc',
48 'network/network_icon.h',
49 'network/network_icon_animation.cc',
50 'network/network_icon_animation.h',
51 'network/network_icon_animation_observer.h',
52 'network/network_info.cc',
53 'network/network_info.h',
54 'network/network_list.cc',
55 'network/network_list.h',
56 'network/network_list_delegate.h',
57 'network/network_state_notifier.cc',
58 'network/network_state_notifier.h',
59 'touch_exploration_controller.cc',
60 'touch_exploration_controller.h',
61 'user_activity_power_manager_notifier.cc',
62 'user_activity_power_manager_notifier.h',
63 ],
8 }, 64 },
9 'targets': [ 65 'targets': [
10 { 66 {
11 'target_name': 'ui_chromeos_resources', 67 'target_name': 'ui_chromeos_resources',
12 'type': 'none', 68 'type': 'none',
13 'variables': { 69 'variables': {
14 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/chromeos/resources', 70 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/chromeos/resources',
15 }, 71 },
16 'actions': [ 72 'actions': [
17 { 73 {
(...skipping 22 matching lines...) Expand all
40 }, 96 },
41 ], 97 ],
42 'includes': [ '../../build/grit_target.gypi' ], 98 'includes': [ '../../build/grit_target.gypi' ],
43 }, # target_name: ui_chromeos_strings 99 }, # target_name: ui_chromeos_strings
44 { 100 {
45 'target_name': 'ui_chromeos', 101 'target_name': 'ui_chromeos',
46 'type': '<(component)', 102 'type': '<(component)',
47 'dependencies': [ 103 'dependencies': [
48 '../../base/base.gyp:base', 104 '../../base/base.gyp:base',
49 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 105 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
106 '../../chromeos/chromeos.gyp:chromeos',
50 '../../chromeos/chromeos.gyp:power_manager_proto', 107 '../../chromeos/chromeos.gyp:power_manager_proto',
51 '../../skia/skia.gyp:skia', 108 '../../skia/skia.gyp:skia',
52 '../aura/aura.gyp:aura', 109 '../aura/aura.gyp:aura',
53 '../events/events.gyp:events', 110 '../events/events.gyp:events',
54 '../events/events.gyp:gesture_detection', 111 '../events/events.gyp:gesture_detection',
55 '../message_center/message_center.gyp:message_center', 112 '../message_center/message_center.gyp:message_center',
56 '../views/views.gyp:views', 113 '../views/views.gyp:views',
57 '../wm/wm.gyp:wm', 114 '../wm/wm.gyp:wm',
58 'ui_chromeos_resources', 115 'ui_chromeos_resources',
59 'ui_chromeos_strings', 116 'ui_chromeos_strings',
60 ], 117 ],
61 'defines': [ 118 'defines': [
62 'UI_CHROMEOS_IMPLEMENTATION', 119 'UI_CHROMEOS_IMPLEMENTATION',
63 ], 120 ],
64 'sources': [ 121 'sources': [ '<@(ui_chromeos_sources)' ],
65 'accessibility_types.h', 122 'conditions': [
66 'ime/candidate_view.cc', 123 ['use_x11 == 1', {
67 'ime/candidate_view.h', 124 'dependencies': [
68 'ime/candidate_window_view.cc', 125 '../../build/linux/system.gyp:x11',
69 'ime/candidate_window_view.h', 126 '../gfx/x/gfx_x11.gyp:gfx_x11',
70 'ime/infolist_window.cc', 127 ],
71 'ime/infolist_window.h', 128 }],
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 ], 129 ],
97 }, # target_name: ui_chromeos 130 }, # target_name: ui_chromeos
98 ], 131 ],
99 } 132 }
OLDNEW
« ui/chromeos/DEPS ('K') | « ui/chromeos/ime/view/mode_indicator_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698