Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(394)

Side by Side Diff: ash/test/BUILD.gn

Issue 2790903002: Makes AshTestImpl::Create create the right impl based on config (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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.
8 source_set("ash_with_aura_test_support") {
9 testonly = true
10 sources = [
11 "ash_test_impl_aura.cc",
12 "ash_test_impl_aura.h",
13 ]
14 deps = [
15 ":test_support_common",
16 "//ash",
17 "//base",
msw 2017/03/31 16:27:13 optional nit: move this generic //base dep to test
sky 2017/03/31 17:37:22 Done.
18 "//skia",
19 "//ui/aura:test_support",
20 "//ui/display",
21 "//ui/wm",
22 ]
23 }
24
25 static_library("test_support_without_content") { 7 static_library("test_support_without_content") {
26 testonly = true 8 testonly = true
27 sources = [ 9 sources = [
28 "ash_test_environment_default.cc", 10 "ash_test_environment_default.cc",
29 ] 11 ]
30 12
31 public_deps = [ 13 public_deps = [
32 ":test_support_common", 14 ":test_support_common",
33 ] 15 ]
34 16
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 "../common/test/test_system_tray_delegate.cc", 65 "../common/test/test_system_tray_delegate.cc",
84 "../common/test/test_system_tray_delegate.h", 66 "../common/test/test_system_tray_delegate.h",
85 "../common/test/workspace_event_handler_test_helper.cc", 67 "../common/test/workspace_event_handler_test_helper.cc",
86 "../common/test/workspace_event_handler_test_helper.h", 68 "../common/test/workspace_event_handler_test_helper.h",
87 69
88 # TODO(jamescook): Move these files into ash/test. 70 # TODO(jamescook): Move these files into ash/test.
89 "../laser/laser_pointer_controller_test_api.cc", 71 "../laser/laser_pointer_controller_test_api.cc",
90 "../laser/laser_pointer_controller_test_api.h", 72 "../laser/laser_pointer_controller_test_api.h",
91 "../laser/laser_pointer_points_test_api.cc", 73 "../laser/laser_pointer_points_test_api.cc",
92 "../laser/laser_pointer_points_test_api.h", 74 "../laser/laser_pointer_points_test_api.h",
75 "../mus/test/ash_test_impl_mus.cc",
76 "../mus/test/ash_test_impl_mus.h",
77 "../mus/test/wm_test_base.cc",
78 "../mus/test/wm_test_base.h",
79 "../mus/test/wm_test_helper.cc",
80 "../mus/test/wm_test_helper.h",
93 "../rotator/test/screen_rotation_animator_test_api.cc", 81 "../rotator/test/screen_rotation_animator_test_api.cc",
94 "../rotator/test/screen_rotation_animator_test_api.h", 82 "../rotator/test/screen_rotation_animator_test_api.h",
95 "../shell/toplevel_window.cc", 83 "../shell/toplevel_window.cc",
96 "../shell/toplevel_window.h", 84 "../shell/toplevel_window.h",
97 "ash_test_base.cc", 85 "ash_test_base.cc",
98 "ash_test_base.h", 86 "ash_test_base.h",
99 "ash_test_environment.h", 87 "ash_test_environment.h",
100 "ash_test_helper.cc", 88 "ash_test_helper.cc",
101 "ash_test_helper.h", 89 "ash_test_helper.h",
90 "ash_test_impl_aura.cc",
91 "ash_test_impl_aura.h",
102 "ash_test_views_delegate.cc", 92 "ash_test_views_delegate.cc",
103 "ash_test_views_delegate.h", 93 "ash_test_views_delegate.h",
104 "child_modal_window.cc", 94 "child_modal_window.cc",
105 "child_modal_window.h", 95 "child_modal_window.h",
106 "cursor_manager_test_api.cc", 96 "cursor_manager_test_api.cc",
107 "cursor_manager_test_api.h", 97 "cursor_manager_test_api.h",
108 "display_configuration_controller_test_api.cc", 98 "display_configuration_controller_test_api.cc",
109 "display_configuration_controller_test_api.h", 99 "display_configuration_controller_test_api.h",
110 "immersive_fullscreen_controller_test_api.cc", 100 "immersive_fullscreen_controller_test_api.cc",
111 "immersive_fullscreen_controller_test_api.h", 101 "immersive_fullscreen_controller_test_api.h",
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 deps = [ 209 deps = [
220 ":test_support_with_content", 210 ":test_support_with_content",
221 "//base", 211 "//base",
222 "//skia", 212 "//skia",
223 "//testing/gtest", 213 "//testing/gtest",
224 "//ui/aura", 214 "//ui/aura",
225 "//ui/base", 215 "//ui/base",
226 "//ui/gl:test_support", 216 "//ui/gl:test_support",
227 ] 217 ]
228 } 218 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698