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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 assert(is_chromeos) | 7 assert(is_chromeos) |
8 | 8 |
9 component("chromeos") { | 9 component("chromeos") { |
10 output_name = "ui_chromeos" | 10 output_name = "ui_chromeos" |
(...skipping 19 matching lines...) Expand all Loading... |
30 "network/network_icon.cc", | 30 "network/network_icon.cc", |
31 "network/network_icon.h", | 31 "network/network_icon.h", |
32 "network/network_icon_animation.cc", | 32 "network/network_icon_animation.cc", |
33 "network/network_icon_animation.h", | 33 "network/network_icon_animation.h", |
34 "network/network_icon_animation_observer.h", | 34 "network/network_icon_animation_observer.h", |
35 "network/network_info.cc", | 35 "network/network_info.cc", |
36 "network/network_info.h", | 36 "network/network_info.h", |
37 "network/network_list.cc", | 37 "network/network_list.cc", |
38 "network/network_list.h", | 38 "network/network_list.h", |
39 "network/network_list_delegate.h", | 39 "network/network_list_delegate.h", |
| 40 "network/network_list_md.cc", |
| 41 "network/network_list_md.h", |
40 "network/network_list_view_base.cc", | 42 "network/network_list_view_base.cc", |
41 "network/network_list_view_base.h", | 43 "network/network_list_view_base.h", |
42 "network/network_state_notifier.cc", | 44 "network/network_state_notifier.cc", |
43 "network/network_state_notifier.h", | 45 "network/network_state_notifier.h", |
44 "touch_exploration_controller.cc", | 46 "touch_exploration_controller.cc", |
45 "touch_exploration_controller.h", | 47 "touch_exploration_controller.h", |
46 "user_activity_power_manager_notifier.cc", | 48 "user_activity_power_manager_notifier.cc", |
47 "user_activity_power_manager_notifier.h", | 49 "user_activity_power_manager_notifier.h", |
48 ] | 50 ] |
49 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] | 51 defines = [ "UI_CHROMEOS_IMPLEMENTATION" ] |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 "//ui/message_center", | 97 "//ui/message_center", |
96 "//ui/resources:ui_test_pak", | 98 "//ui/resources:ui_test_pak", |
97 "//ui/views", | 99 "//ui/views", |
98 "//ui/views:test_support", | 100 "//ui/views:test_support", |
99 ] | 101 ] |
100 data = [ | 102 data = [ |
101 "$root_out_dir/locales/en-US.pak", | 103 "$root_out_dir/locales/en-US.pak", |
102 "$root_out_dir/ui_test.pak", | 104 "$root_out_dir/ui_test.pak", |
103 ] | 105 ] |
104 } | 106 } |
OLD | NEW |