| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 "//ash/mus:lib", | 154 "//ash/mus:lib", |
| 155 "//ash/public/cpp:ash_public_cpp", | 155 "//ash/public/cpp:ash_public_cpp", |
| 156 "//ash/resources", | 156 "//ash/resources", |
| 157 "//base", | 157 "//base", |
| 158 "//base:i18n", | 158 "//base:i18n", |
| 159 "//base/test:test_support", | 159 "//base/test:test_support", |
| 160 "//chromeos", | 160 "//chromeos", |
| 161 "//components/signin/core/account_id", | 161 "//components/signin/core/account_id", |
| 162 "//components/user_manager:user_manager", | 162 "//components/user_manager:user_manager", |
| 163 "//device/bluetooth", | 163 "//device/bluetooth", |
| 164 "//services/ui/public/cpp/input_devices", |
| 164 "//services/ui/public/interfaces", | 165 "//services/ui/public/interfaces", |
| 165 "//skia", | 166 "//skia", |
| 166 "//testing/gtest", | 167 "//testing/gtest", |
| 167 "//ui/accessibility", | 168 "//ui/accessibility", |
| 168 "//ui/app_list:test_support", | 169 "//ui/app_list:test_support", |
| 169 "//ui/app_list/presenter", | 170 "//ui/app_list/presenter", |
| 170 "//ui/app_list/presenter:test_support", | 171 "//ui/app_list/presenter:test_support", |
| 171 "//ui/aura", | 172 "//ui/aura", |
| 172 "//ui/aura:test_support", | 173 "//ui/aura:test_support", |
| 173 "//ui/base:test_support", | 174 "//ui/base:test_support", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 deps = [ | 206 deps = [ |
| 206 ":test_support_with_content", | 207 ":test_support_with_content", |
| 207 "//base", | 208 "//base", |
| 208 "//skia", | 209 "//skia", |
| 209 "//testing/gtest", | 210 "//testing/gtest", |
| 210 "//ui/aura", | 211 "//ui/aura", |
| 211 "//ui/base", | 212 "//ui/base", |
| 212 "//ui/gl:test_support", | 213 "//ui/gl:test_support", |
| 213 ] | 214 ] |
| 214 } | 215 } |
| OLD | NEW |