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