| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 static_library("test_support_without_content") { | 7 static_library("test_support_without_content") { |
| 8 testonly = true | 8 testonly = true |
| 9 sources = [ | 9 sources = [ |
| 10 "ash_test_environment_default.cc", | 10 "ash_test_environment_default.cc", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "test_system_tray_item.cc", | 118 "test_system_tray_item.cc", |
| 119 "test_system_tray_item.h", | 119 "test_system_tray_item.h", |
| 120 "test_wallpaper_delegate.cc", | 120 "test_wallpaper_delegate.cc", |
| 121 "test_wallpaper_delegate.h", | 121 "test_wallpaper_delegate.h", |
| 122 "tray_cast_test_api.cc", | 122 "tray_cast_test_api.cc", |
| 123 "tray_cast_test_api.h", | 123 "tray_cast_test_api.h", |
| 124 "ui_controls_factory_ash.cc", | 124 "ui_controls_factory_ash.cc", |
| 125 "ui_controls_factory_ash.h", | 125 "ui_controls_factory_ash.h", |
| 126 "user_metrics_recorder_test_api.cc", | 126 "user_metrics_recorder_test_api.cc", |
| 127 "user_metrics_recorder_test_api.h", | 127 "user_metrics_recorder_test_api.h", |
| 128 "wallpaper_controller_test_api.cc", |
| 129 "wallpaper_controller_test_api.h", |
| 128 "wm_window_test_api.cc", | 130 "wm_window_test_api.cc", |
| 129 "wm_window_test_api.h", | 131 "wm_window_test_api.h", |
| 130 "workspace_event_handler_test_helper.cc", | 132 "workspace_event_handler_test_helper.cc", |
| 131 "workspace_event_handler_test_helper.h", | 133 "workspace_event_handler_test_helper.h", |
| 132 ] | 134 ] |
| 133 configs += [ "//build/config:precompiled_headers" ] | 135 configs += [ "//build/config:precompiled_headers" ] |
| 134 | 136 |
| 135 public_deps = [ | 137 public_deps = [ |
| 136 "//ash", | 138 "//ash", |
| 137 "//testing/gtest", | 139 "//testing/gtest", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 deps = [ | 198 deps = [ |
| 197 ":test_support_with_content", | 199 ":test_support_with_content", |
| 198 "//base", | 200 "//base", |
| 199 "//skia", | 201 "//skia", |
| 200 "//testing/gtest", | 202 "//testing/gtest", |
| 201 "//ui/aura", | 203 "//ui/aura", |
| 202 "//ui/base", | 204 "//ui/base", |
| 203 "//ui/gl:test_support", | 205 "//ui/gl:test_support", |
| 204 ] | 206 ] |
| 205 } | 207 } |
| OLD | NEW |