| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "test_overlay_delegate.cc", | 104 "test_overlay_delegate.cc", |
| 105 "test_overlay_delegate.h", | 105 "test_overlay_delegate.h", |
| 106 "test_palette_delegate.cc", | 106 "test_palette_delegate.cc", |
| 107 "test_palette_delegate.h", | 107 "test_palette_delegate.h", |
| 108 "test_screenshot_delegate.cc", | 108 "test_screenshot_delegate.cc", |
| 109 "test_screenshot_delegate.h", | 109 "test_screenshot_delegate.h", |
| 110 "test_session_controller_client.cc", | 110 "test_session_controller_client.cc", |
| 111 "test_session_controller_client.h", | 111 "test_session_controller_client.h", |
| 112 "test_session_state_animator.cc", | 112 "test_session_state_animator.cc", |
| 113 "test_session_state_animator.h", | 113 "test_session_state_animator.h", |
| 114 "test_session_state_delegate.cc", | |
| 115 "test_session_state_delegate.h", | |
| 116 "test_shell_delegate.cc", | 114 "test_shell_delegate.cc", |
| 117 "test_shell_delegate.h", | 115 "test_shell_delegate.h", |
| 118 "test_system_tray_delegate.cc", | 116 "test_system_tray_delegate.cc", |
| 119 "test_system_tray_delegate.h", | 117 "test_system_tray_delegate.h", |
| 120 "test_system_tray_item.cc", | 118 "test_system_tray_item.cc", |
| 121 "test_system_tray_item.h", | 119 "test_system_tray_item.h", |
| 122 "test_wallpaper_delegate.cc", | 120 "test_wallpaper_delegate.cc", |
| 123 "test_wallpaper_delegate.h", | 121 "test_wallpaper_delegate.h", |
| 124 "tray_cast_test_api.cc", | 122 "tray_cast_test_api.cc", |
| 125 "tray_cast_test_api.h", | 123 "tray_cast_test_api.h", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 deps = [ | 198 deps = [ |
| 201 ":test_support_with_content", | 199 ":test_support_with_content", |
| 202 "//base", | 200 "//base", |
| 203 "//skia", | 201 "//skia", |
| 204 "//testing/gtest", | 202 "//testing/gtest", |
| 205 "//ui/aura", | 203 "//ui/aura", |
| 206 "//ui/base", | 204 "//ui/base", |
| 207 "//ui/gl:test_support", | 205 "//ui/gl:test_support", |
| 208 ] | 206 ] |
| 209 } | 207 } |
| OLD | NEW |