Index: ui/chromeos/BUILD.gn |
diff --git a/ui/chromeos/BUILD.gn b/ui/chromeos/BUILD.gn |
index 8e49aa66a70f0497a53b32c4046ce157a6617ea9..a0d0edc972c9d0863225a903fd8aca4c6ba409fd 100644 |
--- a/ui/chromeos/BUILD.gn |
+++ b/ui/chromeos/BUILD.gn |
@@ -4,6 +4,8 @@ |
component("ui_chromeos") { |
sources = [ |
+ "network/network_connect.cc", |
+ "network/network_connect.h", |
"network/network_icon.cc", |
"network/network_icon.h", |
"network/network_icon_animation.cc", |
@@ -14,6 +16,8 @@ component("ui_chromeos") { |
"network/network_list.cc", |
"network/network_list.h", |
"network/network_list_delegate.h", |
+ "network/network_state_notifier.cc", |
+ "network/network_state_notifier.h", |
"touch_exploration_controller.cc", |
"touch_exploration_controller.h", |
"user_activity_power_manager_notifier.cc", |
@@ -33,3 +37,24 @@ component("ui_chromeos") { |
] |
defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] |
} |
+ |
+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
|
+ sources = [ |
+ "test/run_all_unittests.cc", |
+ ] |
+ |
+ deps = [ |
+ ":ui_chromeos", |
+ "//base", |
+ "//base/test:test_support", |
+ "//skia", |
+ "//testing/gtest", |
+ "//ui/aura", |
+ "//ui/chromeos/resources", |
+ "//ui/chromeos/strings", |
+ "//ui/events", |
+ "//ui/events:gesture_detection", |
+ "//ui/views", |
+ "//ui/wm", |
+ ] |
+} |