OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 static_library("test_support") { | |
6 testonly = true | |
7 sources = [ | |
8 "ash_test.cc", | |
9 "ash_test.h", | |
10 "ash_test_impl.h", | |
11 "material_design_controller_test_api.cc", | |
12 "material_design_controller_test_api.h", | |
13 "test_palette_delegate.cc", | |
14 "test_palette_delegate.h", | |
15 "test_session_state_delegate.cc", | |
16 "test_session_state_delegate.h", | |
17 "test_volume_control_delegate.cc", | |
18 "test_volume_control_delegate.h", | |
19 ] | |
20 configs += [ "//build/config:precompiled_headers" ] | |
21 | |
22 public_deps = [ | |
23 "//testing/gtest", | |
24 ] | |
25 deps = [ | |
26 "//ash", | |
27 "//base", | |
28 "//components/signin/core/account_id:", | |
msw
2016/10/07 22:48:08
nit: remove trailing ':'
sky
2016/10/07 22:50:44
Done.
| |
29 "//components/user_manager", | |
30 | |
31 # TODO: this is for ui/wm/public/window_types.h, which is in aura. | |
32 # http://crbug.com/654078. | |
33 "//ui/aura", | |
34 "//ui/display", | |
35 "//ui/gfx/geometry", | |
36 "//ui/views", | |
37 "//ui/wm", | |
38 ] | |
39 } | |
OLD | NEW |