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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 # |test_support_without_content|. | 65 # |test_support_without_content|. |
66 static_library("test_support_common") { | 66 static_library("test_support_common") { |
67 testonly = true | 67 testonly = true |
68 visibility = [ ":*" ] | 68 visibility = [ ":*" ] |
69 sources = [ | 69 sources = [ |
70 "../common/test/ash_test.cc", | 70 "../common/test/ash_test.cc", |
71 "../common/test/ash_test.h", | 71 "../common/test/ash_test.h", |
72 "../common/test/ash_test_impl.h", | 72 "../common/test/ash_test_impl.h", |
73 "../common/test/test_palette_delegate.cc", | 73 "../common/test/test_palette_delegate.cc", |
74 "../common/test/test_palette_delegate.h", | 74 "../common/test/test_palette_delegate.h", |
| 75 "../common/test/test_session_controller_client.cc", |
| 76 "../common/test/test_session_controller_client.h", |
75 "../common/test/test_session_state_delegate.cc", | 77 "../common/test/test_session_state_delegate.cc", |
76 "../common/test/test_session_state_delegate.h", | 78 "../common/test/test_session_state_delegate.h", |
77 "../common/test/test_shelf_delegate.cc", | 79 "../common/test/test_shelf_delegate.cc", |
78 "../common/test/test_shelf_delegate.h", | 80 "../common/test/test_shelf_delegate.h", |
79 "../common/test/test_shelf_item_delegate.cc", | 81 "../common/test/test_shelf_item_delegate.cc", |
80 "../common/test/test_shelf_item_delegate.h", | 82 "../common/test/test_shelf_item_delegate.h", |
81 "../common/test/test_system_tray_delegate.cc", | 83 "../common/test/test_system_tray_delegate.cc", |
82 "../common/test/test_system_tray_delegate.h", | 84 "../common/test/test_system_tray_delegate.h", |
83 "../common/test/wm_shell_test_api.cc", | 85 "../common/test/wm_shell_test_api.cc", |
84 "../common/test/wm_shell_test_api.h", | 86 "../common/test/wm_shell_test_api.h", |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 deps = [ | 216 deps = [ |
215 ":test_support_with_content", | 217 ":test_support_with_content", |
216 "//base", | 218 "//base", |
217 "//skia", | 219 "//skia", |
218 "//testing/gtest", | 220 "//testing/gtest", |
219 "//ui/aura", | 221 "//ui/aura", |
220 "//ui/base", | 222 "//ui/base", |
221 "//ui/gl:test_support", | 223 "//ui/gl:test_support", |
222 ] | 224 ] |
223 } | 225 } |
OLD | NEW |