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 static_library("test_support") { | 5 static_library("test_support") { |
6 testonly = true | 6 testonly = true |
7 sources = [ | 7 sources = [ |
8 "ash_test.cc", | 8 "ash_test.cc", |
9 "ash_test.h", | 9 "ash_test.h", |
10 "ash_test_impl.h", | 10 "ash_test_impl.h", |
11 "material_design_controller_test_api.cc", | 11 "material_design_controller_test_api.cc", |
12 "material_design_controller_test_api.h", | 12 "material_design_controller_test_api.h", |
13 "test_palette_delegate.cc", | 13 "test_palette_delegate.cc", |
14 "test_palette_delegate.h", | 14 "test_palette_delegate.h", |
15 "test_session_state_delegate.cc", | 15 "test_session_state_delegate.cc", |
16 "test_session_state_delegate.h", | 16 "test_session_state_delegate.h", |
17 "test_system_tray_delegate.cc", | 17 "test_system_tray_delegate.cc", |
18 "test_system_tray_delegate.h", | 18 "test_system_tray_delegate.h", |
19 "test_volume_control_delegate.cc", | |
20 "test_volume_control_delegate.h", | |
21 "wm_shell_test_api.cc", | 19 "wm_shell_test_api.cc", |
22 "wm_shell_test_api.h", | 20 "wm_shell_test_api.h", |
23 "workspace_event_handler_test_helper.cc", | 21 "workspace_event_handler_test_helper.cc", |
24 "workspace_event_handler_test_helper.h", | 22 "workspace_event_handler_test_helper.h", |
25 ] | 23 ] |
26 configs += [ "//build/config:precompiled_headers" ] | 24 configs += [ "//build/config:precompiled_headers" ] |
27 | 25 |
28 public_deps = [ | 26 public_deps = [ |
29 "//testing/gtest", | 27 "//testing/gtest", |
30 ] | 28 ] |
31 deps = [ | 29 deps = [ |
32 "//ash", | 30 "//ash", |
33 "//base", | 31 "//base", |
34 "//components/signin/core/account_id", | 32 "//components/signin/core/account_id", |
35 "//components/user_manager", | 33 "//components/user_manager", |
36 | 34 |
37 # TODO: this is for ui/wm/public/window_types.h, which is in aura. | 35 # TODO: this is for ui/wm/public/window_types.h, which is in aura. |
38 # http://crbug.com/654078. | 36 # http://crbug.com/654078. |
39 "//ui/aura", | 37 "//ui/aura", |
40 "//ui/display", | 38 "//ui/display", |
41 "//ui/gfx/geometry", | 39 "//ui/gfx/geometry", |
42 "//ui/views", | 40 "//ui/views", |
43 "//ui/wm", | 41 "//ui/wm", |
44 ] | 42 ] |
45 } | 43 } |
OLD | NEW |