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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 # |test_support_without_content|. | 47 # |test_support_without_content|. |
48 static_library("test_support_common") { | 48 static_library("test_support_common") { |
49 testonly = true | 49 testonly = true |
50 visibility = [ ":*" ] | 50 visibility = [ ":*" ] |
51 sources = [ | 51 sources = [ |
52 # TODO(jamescook): Move these files into ash/test. | 52 # TODO(jamescook): Move these files into ash/test. |
53 "../laser/laser_pointer_controller_test_api.cc", | 53 "../laser/laser_pointer_controller_test_api.cc", |
54 "../laser/laser_pointer_controller_test_api.h", | 54 "../laser/laser_pointer_controller_test_api.h", |
55 "../laser/laser_pointer_points_test_api.cc", | 55 "../laser/laser_pointer_points_test_api.cc", |
56 "../laser/laser_pointer_points_test_api.h", | 56 "../laser/laser_pointer_points_test_api.h", |
57 "../mus/test/ash_test_impl_mus.cc", | |
58 "../mus/test/ash_test_impl_mus.h", | |
59 "../mus/test/wm_test_base.cc", | |
60 "../mus/test/wm_test_base.h", | |
61 "../mus/test/wm_test_helper.cc", | |
62 "../mus/test/wm_test_helper.h", | |
63 "../rotator/test/screen_rotation_animator_test_api.cc", | 57 "../rotator/test/screen_rotation_animator_test_api.cc", |
64 "../rotator/test/screen_rotation_animator_test_api.h", | 58 "../rotator/test/screen_rotation_animator_test_api.h", |
65 "../shell/toplevel_window.cc", | 59 "../shell/toplevel_window.cc", |
66 "../shell/toplevel_window.h", | 60 "../shell/toplevel_window.h", |
67 "ash_test.cc", | |
68 "ash_test.h", | |
69 "ash_test_base.cc", | 61 "ash_test_base.cc", |
70 "ash_test_base.h", | 62 "ash_test_base.h", |
71 "ash_test_environment.h", | 63 "ash_test_environment.h", |
72 "ash_test_helper.cc", | 64 "ash_test_helper.cc", |
73 "ash_test_helper.h", | 65 "ash_test_helper.h", |
74 "ash_test_impl.h", | |
75 "ash_test_impl_aura.cc", | |
76 "ash_test_impl_aura.h", | |
77 "ash_test_views_delegate.cc", | 66 "ash_test_views_delegate.cc", |
78 "ash_test_views_delegate.h", | 67 "ash_test_views_delegate.h", |
79 "child_modal_window.cc", | 68 "child_modal_window.cc", |
80 "child_modal_window.h", | 69 "child_modal_window.h", |
81 "cursor_manager_test_api.cc", | 70 "cursor_manager_test_api.cc", |
82 "cursor_manager_test_api.h", | 71 "cursor_manager_test_api.h", |
83 "display_configuration_controller_test_api.cc", | 72 "display_configuration_controller_test_api.cc", |
84 "display_configuration_controller_test_api.h", | 73 "display_configuration_controller_test_api.h", |
85 "immersive_fullscreen_controller_test_api.cc", | 74 "immersive_fullscreen_controller_test_api.cc", |
86 "immersive_fullscreen_controller_test_api.h", | 75 "immersive_fullscreen_controller_test_api.h", |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 deps = [ | 196 deps = [ |
208 ":test_support_with_content", | 197 ":test_support_with_content", |
209 "//base", | 198 "//base", |
210 "//skia", | 199 "//skia", |
211 "//testing/gtest", | 200 "//testing/gtest", |
212 "//ui/aura", | 201 "//ui/aura", |
213 "//ui/base", | 202 "//ui/base", |
214 "//ui/gl:test_support", | 203 "//ui/gl:test_support", |
215 ] | 204 ] |
216 } | 205 } |
OLD | NEW |