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 component("ui_chromeos") { | 5 component("ui_chromeos") { |
6 sources = [ | 6 sources = [ |
7 "accessibility_types.h", | 7 "accessibility_types.h", |
| 8 "ime/candidate_view.cc", |
| 9 "ime/candidate_view.h", |
| 10 "ime/candidate_window_view.cc", |
| 11 "ime/candidate_window_view.h", |
| 12 "ime/infolist_window.cc", |
| 13 "ime/infolist_window.h", |
| 14 "ime/input_method_menu_item.cc", |
| 15 "ime/input_method_menu_item.h", |
| 16 "ime/input_method_menu_manager.cc", |
| 17 "ime/input_method_menu_manager.h", |
| 18 "ime/mode_indicator_view.cc", |
| 19 "ime/mode_indicator_view.h", |
8 "network/network_connect.cc", | 20 "network/network_connect.cc", |
9 "network/network_connect.h", | 21 "network/network_connect.h", |
10 "network/network_icon.cc", | 22 "network/network_icon.cc", |
11 "network/network_icon.h", | 23 "network/network_icon.h", |
12 "network/network_icon_animation.cc", | 24 "network/network_icon_animation.cc", |
13 "network/network_icon_animation.h", | 25 "network/network_icon_animation.h", |
14 "network/network_icon_animation_observer.h", | 26 "network/network_icon_animation_observer.h", |
15 "network/network_info.cc", | 27 "network/network_info.cc", |
16 "network/network_info.h", | 28 "network/network_info.h", |
17 "network/network_list.cc", | 29 "network/network_list.cc", |
18 "network/network_list.h", | 30 "network/network_list.h", |
19 "network/network_list_delegate.h", | 31 "network/network_list_delegate.h", |
20 "network/network_state_notifier.cc", | 32 "network/network_state_notifier.cc", |
21 "network/network_state_notifier.h", | 33 "network/network_state_notifier.h", |
22 "touch_exploration_controller.cc", | 34 "touch_exploration_controller.cc", |
23 "touch_exploration_controller.h", | 35 "touch_exploration_controller.h", |
24 "user_activity_power_manager_notifier.cc", | 36 "user_activity_power_manager_notifier.cc", |
25 "user_activity_power_manager_notifier.h", | 37 "user_activity_power_manager_notifier.h", |
26 ] | 38 ] |
27 deps = [ | 39 deps = [ |
28 "//base", | 40 "//base", |
| 41 "//base/third_party/dynamic_annotations", |
29 "//chromeos:power_manager_proto", | 42 "//chromeos:power_manager_proto", |
30 "//skia", | 43 "//skia", |
31 "//ui/aura", | 44 "//ui/aura", |
32 "//ui/chromeos/resources", | 45 "//ui/chromeos/resources", |
33 "//ui/chromeos/strings", | 46 "//ui/chromeos/strings", |
34 "//ui/events", | 47 "//ui/events", |
35 "//ui/events:gesture_detection", | 48 "//ui/events:gesture_detection", |
36 "//ui/message_center", | 49 "//ui/message_center", |
37 "//ui/views", | 50 "//ui/views", |
38 "//ui/wm", | 51 "//ui/wm", |
39 ] | 52 ] |
40 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] | 53 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] |
41 } | 54 } |
OLD | NEW |