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", |
(...skipping 14 matching lines...) Expand all Loading... |
32 "//ui/chromeos/resources", | 44 "//ui/chromeos/resources", |
33 "//ui/chromeos/strings", | 45 "//ui/chromeos/strings", |
34 "//ui/events", | 46 "//ui/events", |
35 "//ui/events:gesture_detection", | 47 "//ui/events:gesture_detection", |
36 "//ui/message_center", | 48 "//ui/message_center", |
37 "//ui/views", | 49 "//ui/views", |
38 "//ui/wm", | 50 "//ui/wm", |
39 ] | 51 ] |
40 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] | 52 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] |
41 } | 53 } |
OLD | NEW |