| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "test_wallpaper_delegate.cc", | 122 "test_wallpaper_delegate.cc", |
| 123 "test_wallpaper_delegate.h", | 123 "test_wallpaper_delegate.h", |
| 124 "tray_cast_test_api.cc", | 124 "tray_cast_test_api.cc", |
| 125 "tray_cast_test_api.h", | 125 "tray_cast_test_api.h", |
| 126 "ui_controls_factory_ash.cc", | 126 "ui_controls_factory_ash.cc", |
| 127 "ui_controls_factory_ash.h", | 127 "ui_controls_factory_ash.h", |
| 128 "user_metrics_recorder_test_api.cc", | 128 "user_metrics_recorder_test_api.cc", |
| 129 "user_metrics_recorder_test_api.h", | 129 "user_metrics_recorder_test_api.h", |
| 130 "wallpaper_controller_test_api.cc", | 130 "wallpaper_controller_test_api.cc", |
| 131 "wallpaper_controller_test_api.h", | 131 "wallpaper_controller_test_api.h", |
| 132 "wm_window_test_api.cc", | |
| 133 "wm_window_test_api.h", | |
| 134 "workspace_controller_test_api.cc", | 132 "workspace_controller_test_api.cc", |
| 135 "workspace_controller_test_api.h", | 133 "workspace_controller_test_api.h", |
| 136 "workspace_event_handler_test_helper.cc", | 134 "workspace_event_handler_test_helper.cc", |
| 137 "workspace_event_handler_test_helper.h", | 135 "workspace_event_handler_test_helper.h", |
| 138 ] | 136 ] |
| 139 configs += [ "//build/config:precompiled_headers" ] | 137 configs += [ "//build/config:precompiled_headers" ] |
| 140 | 138 |
| 141 public_deps = [ | 139 public_deps = [ |
| 142 "//ash", | 140 "//ash", |
| 143 "//testing/gtest", | 141 "//testing/gtest", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 deps = [ | 200 deps = [ |
| 203 ":test_support_with_content", | 201 ":test_support_with_content", |
| 204 "//base", | 202 "//base", |
| 205 "//skia", | 203 "//skia", |
| 206 "//testing/gtest", | 204 "//testing/gtest", |
| 207 "//ui/aura", | 205 "//ui/aura", |
| 208 "//ui/base", | 206 "//ui/base", |
| 209 "//ui/gl:test_support", | 207 "//ui/gl:test_support", |
| 210 ] | 208 ] |
| 211 } | 209 } |
| OLD | NEW |