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