OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 # Used to test ash with an aura backend. | 7 # Used to test ash with an aura backend. |
8 source_set("ash_with_aura_test_support") { | 8 source_set("ash_with_aura_test_support") { |
9 testonly = true | 9 testonly = true |
10 sources = [ | 10 sources = [ |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 "shell_test_api.cc", | 96 "shell_test_api.cc", |
97 "shell_test_api.h", | 97 "shell_test_api.h", |
98 "status_area_widget_test_helper.cc", | 98 "status_area_widget_test_helper.cc", |
99 "status_area_widget_test_helper.h", | 99 "status_area_widget_test_helper.h", |
100 "task_switch_time_tracker_test_api.cc", | 100 "task_switch_time_tracker_test_api.cc", |
101 "task_switch_time_tracker_test_api.h", | 101 "task_switch_time_tracker_test_api.h", |
102 "test_activation_delegate.cc", | 102 "test_activation_delegate.cc", |
103 "test_activation_delegate.h", | 103 "test_activation_delegate.h", |
104 "test_keyboard_ui.cc", | 104 "test_keyboard_ui.cc", |
105 "test_keyboard_ui.h", | 105 "test_keyboard_ui.h", |
106 "test_lock_state_controller_delegate.cc", | |
107 "test_lock_state_controller_delegate.h", | |
108 "test_overlay_delegate.cc", | 106 "test_overlay_delegate.cc", |
109 "test_overlay_delegate.h", | 107 "test_overlay_delegate.h", |
110 "test_screenshot_delegate.cc", | 108 "test_screenshot_delegate.cc", |
111 "test_screenshot_delegate.h", | 109 "test_screenshot_delegate.h", |
112 "test_session_state_animator.cc", | 110 "test_session_state_animator.cc", |
113 "test_session_state_animator.h", | 111 "test_session_state_animator.h", |
114 "test_shell_delegate.cc", | 112 "test_shell_delegate.cc", |
115 "test_shell_delegate.h", | 113 "test_shell_delegate.h", |
| 114 "test_shutdown_client.cc", |
| 115 "test_shutdown_client.h", |
116 "test_suite.cc", | 116 "test_suite.cc", |
117 "test_suite.h", | 117 "test_suite.h", |
118 "test_suite_init.h", | 118 "test_suite_init.h", |
119 "test_suite_init.mm", | 119 "test_suite_init.mm", |
120 "test_system_tray_item.cc", | 120 "test_system_tray_item.cc", |
121 "test_system_tray_item.h", | 121 "test_system_tray_item.h", |
122 "test_wallpaper_delegate.cc", | 122 "test_wallpaper_delegate.cc", |
123 "test_wallpaper_delegate.h", | 123 "test_wallpaper_delegate.h", |
124 "tray_cast_test_api.cc", | 124 "tray_cast_test_api.cc", |
125 "tray_cast_test_api.h", | 125 "tray_cast_test_api.h", |
126 "ui_controls_factory_ash.cc", | 126 "ui_controls_factory_ash.cc", |
127 "ui_controls_factory_ash.h", | 127 "ui_controls_factory_ash.h", |
128 "user_metrics_recorder_test_api.cc", | 128 "user_metrics_recorder_test_api.cc", |
129 "user_metrics_recorder_test_api.h", | 129 "user_metrics_recorder_test_api.h", |
130 ] | 130 ] |
131 configs += [ "//build/config:precompiled_headers" ] | 131 configs += [ "//build/config:precompiled_headers" ] |
132 | 132 |
133 public_deps = [ | 133 public_deps = [ |
134 "//ash", | 134 "//ash", |
135 "//ui/display:display_manager_test_api", | 135 "//ui/display:display_manager_test_api", |
136 ] | 136 ] |
137 deps = [ | 137 deps = [ |
138 "//ash/common/test:test_support", | 138 "//ash/common/test:test_support", |
139 "//ash/public/cpp", | 139 "//ash/public/cpp", |
| 140 "//ash/public/interfaces", |
140 "//ash/resources", | 141 "//ash/resources", |
141 "//base:i18n", | 142 "//base:i18n", |
142 "//base/test:test_support", | 143 "//base/test:test_support", |
143 "//components/signin/core/account_id", | 144 "//components/signin/core/account_id", |
144 "//components/user_manager:user_manager", | 145 "//components/user_manager:user_manager", |
145 "//device/bluetooth", | 146 "//device/bluetooth", |
146 "//skia", | 147 "//skia", |
147 "//testing/gtest", | 148 "//testing/gtest", |
148 "//ui/accessibility", | 149 "//ui/accessibility", |
149 "//ui/app_list:test_support", | 150 "//ui/app_list:test_support", |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 deps = [ | 203 deps = [ |
203 ":test_support_with_content", | 204 ":test_support_with_content", |
204 "//base", | 205 "//base", |
205 "//skia", | 206 "//skia", |
206 "//testing/gtest", | 207 "//testing/gtest", |
207 "//ui/aura", | 208 "//ui/aura", |
208 "//ui/base", | 209 "//ui/base", |
209 "//ui/gl:test_support", | 210 "//ui/gl:test_support", |
210 ] | 211 ] |
211 } | 212 } |
OLD | NEW |