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