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", | |
7 "network/network_icon.cc", | 9 "network/network_icon.cc", |
8 "network/network_icon.h", | 10 "network/network_icon.h", |
9 "network/network_icon_animation.cc", | 11 "network/network_icon_animation.cc", |
10 "network/network_icon_animation.h", | 12 "network/network_icon_animation.h", |
11 "network/network_icon_animation_observer.h", | 13 "network/network_icon_animation_observer.h", |
12 "network/network_info.cc", | 14 "network/network_info.cc", |
13 "network/network_info.h", | 15 "network/network_info.h", |
14 "network/network_list.cc", | 16 "network/network_list.cc", |
15 "network/network_list.h", | 17 "network/network_list.h", |
16 "network/network_list_delegate.h", | 18 "network/network_list_delegate.h", |
19 "network/network_state_notifier.cc", | |
20 "network/network_state_notifier.h", | |
17 "touch_exploration_controller.cc", | 21 "touch_exploration_controller.cc", |
18 "touch_exploration_controller.h", | 22 "touch_exploration_controller.h", |
19 "user_activity_power_manager_notifier.cc", | 23 "user_activity_power_manager_notifier.cc", |
20 "user_activity_power_manager_notifier.h", | 24 "user_activity_power_manager_notifier.h", |
21 ] | 25 ] |
22 deps = [ | 26 deps = [ |
23 "//base", | 27 "//base", |
24 "//chromeos:power_manager_proto", | 28 "//chromeos:power_manager_proto", |
25 "//skia", | 29 "//skia", |
26 "//ui/aura", | 30 "//ui/aura", |
27 "//ui/chromeos/resources", | 31 "//ui/chromeos/resources", |
28 "//ui/chromeos/strings", | 32 "//ui/chromeos/strings", |
29 "//ui/events", | 33 "//ui/events", |
30 "//ui/events:gesture_detection", | 34 "//ui/events:gesture_detection", |
31 "//ui/views", | 35 "//ui/views", |
32 "//ui/wm", | 36 "//ui/wm", |
33 ] | 37 ] |
34 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] | 38 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] |
35 } | 39 } |
40 | |
41 test("message_center_unittests") { | |
oshima
2014/10/27 22:17:20
is this intentional? If so, won't this conflict wi
stevenjb
2014/10/29 20:44:55
Removed, thanks for catching (added before I reali
| |
42 sources = [ | |
43 "test/run_all_unittests.cc", | |
44 ] | |
45 | |
46 deps = [ | |
47 ":ui_chromeos", | |
48 "//base", | |
49 "//base/test:test_support", | |
50 "//skia", | |
51 "//testing/gtest", | |
52 "//ui/aura", | |
53 "//ui/chromeos/resources", | |
54 "//ui/chromeos/strings", | |
55 "//ui/events", | |
56 "//ui/events:gesture_detection", | |
57 "//ui/views", | |
58 "//ui/wm", | |
59 ] | |
60 } | |
OLD | NEW |