| 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", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "workspace_event_handler_test_helper.h", | 24 "workspace_event_handler_test_helper.h", |
| 25 ] | 25 ] |
| 26 configs += [ "//build/config:precompiled_headers" ] | 26 configs += [ "//build/config:precompiled_headers" ] |
| 27 | 27 |
| 28 public_deps = [ | 28 public_deps = [ |
| 29 "//testing/gtest", | 29 "//testing/gtest", |
| 30 ] | 30 ] |
| 31 deps = [ | 31 deps = [ |
| 32 "//ash", | 32 "//ash", |
| 33 "//ash/public/cpp:ash_public_cpp", | 33 "//ash/public/cpp:ash_public_cpp", |
| 34 "//ash/public/interfaces", | |
| 35 "//base", | 34 "//base", |
| 36 "//components/signin/core/account_id", | 35 "//components/signin/core/account_id", |
| 37 "//components/user_manager", | 36 "//components/user_manager", |
| 38 | 37 |
| 39 # TODO: this is for ui/wm/public/window_types.h, which is in aura. | 38 # TODO: this is for ui/wm/public/window_types.h, which is in aura. |
| 40 # http://crbug.com/654078. | 39 # http://crbug.com/654078. |
| 41 "//ui/aura", | 40 "//ui/aura", |
| 42 "//ui/display/manager", | 41 "//ui/display/manager", |
| 43 "//ui/gfx/geometry", | 42 "//ui/gfx/geometry", |
| 44 "//ui/views", | 43 "//ui/views", |
| 45 "//ui/wm", | 44 "//ui/wm", |
| 46 ] | 45 ] |
| 47 } | 46 } |
| OLD | NEW |