| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "test_keyboard_ui.cc", | 106 "test_keyboard_ui.cc", |
| 107 "test_keyboard_ui.h", | 107 "test_keyboard_ui.h", |
| 108 "test_overlay_delegate.cc", | 108 "test_overlay_delegate.cc", |
| 109 "test_overlay_delegate.h", | 109 "test_overlay_delegate.h", |
| 110 "test_screenshot_delegate.cc", | 110 "test_screenshot_delegate.cc", |
| 111 "test_screenshot_delegate.h", | 111 "test_screenshot_delegate.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_shell_delegate.cc", | 114 "test_shell_delegate.cc", |
| 115 "test_shell_delegate.h", | 115 "test_shell_delegate.h", |
| 116 "test_shutdown_client.cc", | |
| 117 "test_shutdown_client.h", | |
| 118 "test_suite.cc", | 116 "test_suite.cc", |
| 119 "test_suite.h", | 117 "test_suite.h", |
| 120 "test_suite_init.h", | 118 "test_suite_init.h", |
| 121 "test_suite_init.mm", | 119 "test_suite_init.mm", |
| 122 "test_system_tray_item.cc", | 120 "test_system_tray_item.cc", |
| 123 "test_system_tray_item.h", | 121 "test_system_tray_item.h", |
| 124 "test_wallpaper_delegate.cc", | 122 "test_wallpaper_delegate.cc", |
| 125 "test_wallpaper_delegate.h", | 123 "test_wallpaper_delegate.h", |
| 126 "ui_controls_factory_ash.cc", | 124 "ui_controls_factory_ash.cc", |
| 127 "ui_controls_factory_ash.h", | 125 "ui_controls_factory_ash.h", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 deps = [ | 203 deps = [ |
| 206 ":test_support_with_content", | 204 ":test_support_with_content", |
| 207 "//base", | 205 "//base", |
| 208 "//skia", | 206 "//skia", |
| 209 "//testing/gtest", | 207 "//testing/gtest", |
| 210 "//ui/aura", | 208 "//ui/aura", |
| 211 "//ui/base", | 209 "//ui/base", |
| 212 "//ui/gl:test_support", | 210 "//ui/gl:test_support", |
| 213 ] | 211 ] |
| 214 } | 212 } |
| OLD | NEW |