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 static_library("test_support_without_content") { | 7 static_library("test_support_without_content") { |
8 testonly = true | 8 testonly = true |
9 sources = [ | 9 sources = [ |
10 "ash_test_environment_default.cc", | 10 "ash_test_environment_default.cc", |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 "test_palette_delegate.cc", | 115 "test_palette_delegate.cc", |
116 "test_palette_delegate.h", | 116 "test_palette_delegate.h", |
117 "test_screenshot_delegate.cc", | 117 "test_screenshot_delegate.cc", |
118 "test_screenshot_delegate.h", | 118 "test_screenshot_delegate.h", |
119 "test_session_controller_client.cc", | 119 "test_session_controller_client.cc", |
120 "test_session_controller_client.h", | 120 "test_session_controller_client.h", |
121 "test_session_state_animator.cc", | 121 "test_session_state_animator.cc", |
122 "test_session_state_animator.h", | 122 "test_session_state_animator.h", |
123 "test_session_state_delegate.cc", | 123 "test_session_state_delegate.cc", |
124 "test_session_state_delegate.h", | 124 "test_session_state_delegate.h", |
125 "test_shelf_delegate.cc", | |
126 "test_shelf_delegate.h", | |
127 "test_shelf_item_delegate.cc", | |
128 "test_shelf_item_delegate.h", | |
129 "test_shell_delegate.cc", | 125 "test_shell_delegate.cc", |
130 "test_shell_delegate.h", | 126 "test_shell_delegate.h", |
131 "test_system_tray_delegate.cc", | 127 "test_system_tray_delegate.cc", |
132 "test_system_tray_delegate.h", | 128 "test_system_tray_delegate.h", |
133 "test_system_tray_item.cc", | 129 "test_system_tray_item.cc", |
134 "test_system_tray_item.h", | 130 "test_system_tray_item.h", |
135 "test_wallpaper_delegate.cc", | 131 "test_wallpaper_delegate.cc", |
136 "test_wallpaper_delegate.h", | 132 "test_wallpaper_delegate.h", |
137 "tray_cast_test_api.cc", | 133 "tray_cast_test_api.cc", |
138 "tray_cast_test_api.h", | 134 "tray_cast_test_api.h", |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 deps = [ | 205 deps = [ |
210 ":test_support_with_content", | 206 ":test_support_with_content", |
211 "//base", | 207 "//base", |
212 "//skia", | 208 "//skia", |
213 "//testing/gtest", | 209 "//testing/gtest", |
214 "//ui/aura", | 210 "//ui/aura", |
215 "//ui/base", | 211 "//ui/base", |
216 "//ui/gl:test_support", | 212 "//ui/gl:test_support", |
217 ] | 213 ] |
218 } | 214 } |
OLD | NEW |