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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 "shelf_view_test_api.cc", | 101 "shelf_view_test_api.cc", |
102 "shelf_view_test_api.h", | 102 "shelf_view_test_api.h", |
103 "shell_test_api.cc", | 103 "shell_test_api.cc", |
104 "shell_test_api.h", | 104 "shell_test_api.h", |
105 "status_area_widget_test_helper.cc", | 105 "status_area_widget_test_helper.cc", |
106 "status_area_widget_test_helper.h", | 106 "status_area_widget_test_helper.h", |
107 "task_switch_time_tracker_test_api.cc", | 107 "task_switch_time_tracker_test_api.cc", |
108 "task_switch_time_tracker_test_api.h", | 108 "task_switch_time_tracker_test_api.h", |
109 "test_activation_delegate.cc", | 109 "test_activation_delegate.cc", |
110 "test_activation_delegate.h", | 110 "test_activation_delegate.h", |
| 111 "test_app_list_presenter_impl.cc", |
| 112 "test_app_list_presenter_impl.h", |
111 "test_keyboard_ui.cc", | 113 "test_keyboard_ui.cc", |
112 "test_keyboard_ui.h", | 114 "test_keyboard_ui.h", |
113 "test_overlay_delegate.cc", | 115 "test_overlay_delegate.cc", |
114 "test_overlay_delegate.h", | 116 "test_overlay_delegate.h", |
115 "test_screenshot_delegate.cc", | 117 "test_screenshot_delegate.cc", |
116 "test_screenshot_delegate.h", | 118 "test_screenshot_delegate.h", |
117 "test_session_state_animator.cc", | 119 "test_session_state_animator.cc", |
118 "test_session_state_animator.h", | 120 "test_session_state_animator.h", |
119 "test_shell_delegate.cc", | 121 "test_shell_delegate.cc", |
120 "test_shell_delegate.h", | 122 "test_shell_delegate.h", |
(...skipping 28 matching lines...) Expand all Loading... |
149 "//chromeos", | 151 "//chromeos", |
150 "//components/signin/core/account_id", | 152 "//components/signin/core/account_id", |
151 "//components/user_manager:user_manager", | 153 "//components/user_manager:user_manager", |
152 "//device/bluetooth", | 154 "//device/bluetooth", |
153 "//services/ui/public/interfaces", | 155 "//services/ui/public/interfaces", |
154 "//skia", | 156 "//skia", |
155 "//testing/gtest", | 157 "//testing/gtest", |
156 "//ui/accessibility", | 158 "//ui/accessibility", |
157 "//ui/app_list:test_support", | 159 "//ui/app_list:test_support", |
158 "//ui/app_list/presenter", | 160 "//ui/app_list/presenter", |
| 161 "//ui/app_list/presenter:test_support", |
159 "//ui/aura", | 162 "//ui/aura", |
160 "//ui/aura:test_support", | 163 "//ui/aura:test_support", |
161 "//ui/base:test_support", | 164 "//ui/base:test_support", |
162 "//ui/compositor:test_support", | 165 "//ui/compositor:test_support", |
163 "//ui/display", | 166 "//ui/display", |
164 "//ui/display/types", | 167 "//ui/display/types", |
165 "//ui/events:events_base", | 168 "//ui/events:events_base", |
166 "//ui/events:test_support", | 169 "//ui/events:test_support", |
167 "//ui/events/devices", | 170 "//ui/events/devices", |
168 "//ui/gl", | 171 "//ui/gl", |
(...skipping 24 matching lines...) Expand all Loading... |
193 deps = [ | 196 deps = [ |
194 ":test_support_with_content", | 197 ":test_support_with_content", |
195 "//base", | 198 "//base", |
196 "//skia", | 199 "//skia", |
197 "//testing/gtest", | 200 "//testing/gtest", |
198 "//ui/aura", | 201 "//ui/aura", |
199 "//ui/base", | 202 "//ui/base", |
200 "//ui/gl:test_support", | 203 "//ui/gl:test_support", |
201 ] | 204 ] |
202 } | 205 } |
OLD | NEW |