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 "network/network_connect.cc", | |
8 "network/network_connect.h", | |
9 "network/network_icon.cc", | 7 "network/network_icon.cc", |
10 "network/network_icon.h", | 8 "network/network_icon.h", |
11 "network/network_icon_animation.cc", | 9 "network/network_icon_animation.cc", |
12 "network/network_icon_animation.h", | 10 "network/network_icon_animation.h", |
13 "network/network_icon_animation_observer.h", | 11 "network/network_icon_animation_observer.h", |
14 "network/network_info.cc", | 12 "network/network_info.cc", |
15 "network/network_info.h", | 13 "network/network_info.h", |
16 "network/network_list.cc", | 14 "network/network_list.cc", |
17 "network/network_list.h", | 15 "network/network_list.h", |
18 "network/network_list_delegate.h", | 16 "network/network_list_delegate.h", |
19 "network/network_state_notifier.cc", | |
20 "network/network_state_notifier.h", | |
21 "touch_exploration_controller.cc", | 17 "touch_exploration_controller.cc", |
22 "touch_exploration_controller.h", | 18 "touch_exploration_controller.h", |
23 "user_activity_power_manager_notifier.cc", | 19 "user_activity_power_manager_notifier.cc", |
24 "user_activity_power_manager_notifier.h", | 20 "user_activity_power_manager_notifier.h", |
25 ] | 21 ] |
26 deps = [ | 22 deps = [ |
27 "//base", | 23 "//base", |
28 "//chromeos:power_manager_proto", | 24 "//chromeos:power_manager_proto", |
29 "//skia", | 25 "//skia", |
30 "//ui/aura", | 26 "//ui/aura", |
31 "//ui/chromeos/resources", | 27 "//ui/chromeos/resources", |
32 "//ui/chromeos/strings", | 28 "//ui/chromeos/strings", |
33 "//ui/events", | 29 "//ui/events", |
34 "//ui/events:gesture_detection", | 30 "//ui/events:gesture_detection", |
35 "//ui/views", | 31 "//ui/views", |
36 "//ui/wm", | 32 "//ui/wm", |
37 ] | 33 ] |
38 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] | 34 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] |
39 } | 35 } |
OLD | NEW |