| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 "wm_window_test_api.h", | 138 "wm_window_test_api.h", |
| 139 ] | 139 ] |
| 140 configs += [ "//build/config:precompiled_headers" ] | 140 configs += [ "//build/config:precompiled_headers" ] |
| 141 | 141 |
| 142 public_deps = [ | 142 public_deps = [ |
| 143 "//ash", | 143 "//ash", |
| 144 "//ui/display:display_manager_test_api", | 144 "//ui/display:display_manager_test_api", |
| 145 ] | 145 ] |
| 146 deps = [ | 146 deps = [ |
| 147 "//ash/common/test:test_support", | 147 "//ash/common/test:test_support", |
| 148 "//ash/public/cpp", | 148 "//ash/public/cpp:ash_public_cpp", |
| 149 "//ash/public/interfaces", | 149 "//ash/public/interfaces", |
| 150 "//ash/resources", | 150 "//ash/resources", |
| 151 "//base:i18n", | 151 "//base:i18n", |
| 152 "//base/test:test_support", | 152 "//base/test:test_support", |
| 153 "//chromeos", | 153 "//chromeos", |
| 154 "//components/signin/core/account_id", | 154 "//components/signin/core/account_id", |
| 155 "//components/user_manager:user_manager", | 155 "//components/user_manager:user_manager", |
| 156 "//device/bluetooth", | 156 "//device/bluetooth", |
| 157 "//services/ui/public/interfaces", | 157 "//services/ui/public/interfaces", |
| 158 "//skia", | 158 "//skia", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 deps = [ | 198 deps = [ |
| 199 ":test_support_with_content", | 199 ":test_support_with_content", |
| 200 "//base", | 200 "//base", |
| 201 "//skia", | 201 "//skia", |
| 202 "//testing/gtest", | 202 "//testing/gtest", |
| 203 "//ui/aura", | 203 "//ui/aura", |
| 204 "//ui/base", | 204 "//ui/base", |
| 205 "//ui/gl:test_support", | 205 "//ui/gl:test_support", |
| 206 ] | 206 ] |
| 207 } | 207 } |
| OLD | NEW |