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 import("//build/config/features.gni") | |
msw
2016/10/07 22:02:24
ditto: please audit imports.
sky
2016/10/07 22:23:14
Done.
| |
6 import("//build/config/ui.gni") | |
7 import("//testing/test.gni") | |
8 import("//ui/base/ui_features.gni") | |
9 | |
10 static_library("test_support") { | |
11 testonly = true | |
12 sources = [ | |
13 "ash_test.cc", | |
14 "ash_test.h", | |
15 "ash_test_impl.h", | |
16 "material_design_controller_test_api.cc", | |
17 "material_design_controller_test_api.h", | |
18 "test_palette_delegate.cc", | |
19 "test_palette_delegate.h", | |
20 "test_session_state_delegate.cc", | |
21 "test_session_state_delegate.h", | |
22 "test_volume_control_delegate.cc", | |
23 "test_volume_control_delegate.h", | |
24 ] | |
25 configs += [ "//build/config:precompiled_headers" ] | |
26 | |
27 public_deps = [ | |
28 "//testing/gtest", | |
29 ] | |
30 deps = [ | |
31 "//ash", | |
32 "//base", | |
33 "//components/signin/core/account_id:account_id", | |
msw
2016/10/07 22:02:24
optional nit: omit redundant 'account_id' target n
sky
2016/10/07 22:23:14
Done.
| |
34 "//components/user_manager:user_manager", | |
35 | |
36 # For ui/wm/public/window_types.h, which shouldn't be in aura. | |
msw
2016/10/07 22:02:24
nit: file a bug and/or add TODOs? (or move to ui/w
sky
2016/10/07 22:23:14
Done.
| |
37 "//ui/aura", | |
38 "//ui/display", | |
39 "//ui/gfx/geometry", | |
40 "//ui/views", | |
41 "//ui/wm", | |
42 ] | |
43 } | |
OLD | NEW |