| 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 # Used to test ash with an aura backend. | 7 # Used to test ash with an aura backend. |
| 8 source_set("ash_with_aura_test_support") { | 8 source_set("ash_with_aura_test_support") { |
| 9 testonly = true | 9 testonly = true |
| 10 sources = [ | 10 sources = [ |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 configs += [ "//build/config:precompiled_headers" ] | 134 configs += [ "//build/config:precompiled_headers" ] |
| 135 | 135 |
| 136 public_deps = [ | 136 public_deps = [ |
| 137 "//ash", | 137 "//ash", |
| 138 "//ui/display:display_manager_test_api", | 138 "//ui/display:display_manager_test_api", |
| 139 ] | 139 ] |
| 140 deps = [ | 140 deps = [ |
| 141 "//ash/common/test:test_support", | 141 "//ash/common/test:test_support", |
| 142 "//ash/mus:lib", | 142 "//ash/mus:lib", |
| 143 "//ash/public/cpp:ash_public_cpp", | 143 "//ash/public/cpp:ash_public_cpp", |
| 144 "//ash/public/interfaces", | |
| 145 "//ash/resources", | 144 "//ash/resources", |
| 146 "//base:i18n", | 145 "//base:i18n", |
| 147 "//base/test:test_support", | 146 "//base/test:test_support", |
| 148 "//chromeos", | 147 "//chromeos", |
| 149 "//components/signin/core/account_id", | 148 "//components/signin/core/account_id", |
| 150 "//components/user_manager:user_manager", | 149 "//components/user_manager:user_manager", |
| 151 "//device/bluetooth", | 150 "//device/bluetooth", |
| 152 "//services/ui/public/interfaces", | 151 "//services/ui/public/interfaces", |
| 153 "//skia", | 152 "//skia", |
| 154 "//testing/gtest", | 153 "//testing/gtest", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 deps = [ | 192 deps = [ |
| 194 ":test_support_with_content", | 193 ":test_support_with_content", |
| 195 "//base", | 194 "//base", |
| 196 "//skia", | 195 "//skia", |
| 197 "//testing/gtest", | 196 "//testing/gtest", |
| 198 "//ui/aura", | 197 "//ui/aura", |
| 199 "//ui/base", | 198 "//ui/base", |
| 200 "//ui/gl:test_support", | 199 "//ui/gl:test_support", |
| 201 ] | 200 ] |
| 202 } | 201 } |
| OLD | NEW |