| 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 "user_metrics_recorder_test_api.cc", | 134 "user_metrics_recorder_test_api.cc", |
| 135 "user_metrics_recorder_test_api.h", | 135 "user_metrics_recorder_test_api.h", |
| 136 ] | 136 ] |
| 137 configs += [ "//build/config:precompiled_headers" ] | 137 configs += [ "//build/config:precompiled_headers" ] |
| 138 | 138 |
| 139 public_deps = [ | 139 public_deps = [ |
| 140 "//ash", | 140 "//ash", |
| 141 ] | 141 ] |
| 142 deps = [ | 142 deps = [ |
| 143 "//ash/common/test:test_support", | 143 "//ash/common/test:test_support", |
| 144 "//ash/public/cpp", |
| 144 "//ash/resources", | 145 "//ash/resources", |
| 145 "//base:i18n", | 146 "//base:i18n", |
| 146 "//base/test:test_support", | 147 "//base/test:test_support", |
| 147 "//components/signin/core/account_id", | 148 "//components/signin/core/account_id", |
| 148 "//components/user_manager:user_manager", | 149 "//components/user_manager:user_manager", |
| 149 "//device/bluetooth", | 150 "//device/bluetooth", |
| 150 "//skia", | 151 "//skia", |
| 151 "//testing/gtest", | 152 "//testing/gtest", |
| 152 "//ui/accessibility", | 153 "//ui/accessibility", |
| 153 "//ui/app_list:test_support", | 154 "//ui/app_list:test_support", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 deps = [ | 207 deps = [ |
| 207 ":test_support_with_content", | 208 ":test_support_with_content", |
| 208 "//base", | 209 "//base", |
| 209 "//skia", | 210 "//skia", |
| 210 "//testing/gtest", | 211 "//testing/gtest", |
| 211 "//ui/aura", | 212 "//ui/aura", |
| 212 "//ui/base", | 213 "//ui/base", |
| 213 "//ui/gl:test_support", | 214 "//ui/gl:test_support", |
| 214 ] | 215 ] |
| 215 } | 216 } |
| OLD | NEW |