Chromium Code Reviews| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 161 "//ui/base:test_support", | 161 "//ui/base:test_support", |
| 162 "//ui/compositor:test_support", | 162 "//ui/compositor:test_support", |
| 163 "//ui/display", | 163 "//ui/display", |
| 164 "//ui/display/types", | 164 "//ui/display/types", |
| 165 "//ui/events:events_base", | 165 "//ui/events:events_base", |
| 166 "//ui/events:test_support", | 166 "//ui/events:test_support", |
| 167 "//ui/events/devices", | 167 "//ui/events/devices", |
| 168 "//ui/gl", | 168 "//ui/gl", |
| 169 "//ui/gl:test_support", | 169 "//ui/gl:test_support", |
| 170 "//ui/keyboard", | 170 "//ui/keyboard", |
| 171 "//ui/keyboard:test_support", | |
|
oshima
2017/03/21 14:57:57
why do you need this here? Shouldn't you add new t
oka
2017/03/22 00:18:32
Reverted this file, and added the ui/keyboard:test
| |
| 171 "//ui/message_center", | 172 "//ui/message_center", |
| 172 "//ui/views", | 173 "//ui/views", |
| 173 "//ui/views:test_support", | 174 "//ui/views:test_support", |
| 174 "//ui/wm", | 175 "//ui/wm", |
| 175 ] | 176 ] |
| 176 | 177 |
| 177 if (use_x11) { | 178 if (use_x11) { |
| 178 deps += [ "//ui/gfx/x" ] | 179 deps += [ "//ui/gfx/x" ] |
| 179 } | 180 } |
| 180 } | 181 } |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 193 deps = [ | 194 deps = [ |
| 194 ":test_support_with_content", | 195 ":test_support_with_content", |
| 195 "//base", | 196 "//base", |
| 196 "//skia", | 197 "//skia", |
| 197 "//testing/gtest", | 198 "//testing/gtest", |
| 198 "//ui/aura", | 199 "//ui/aura", |
| 199 "//ui/base", | 200 "//ui/base", |
| 200 "//ui/gl:test_support", | 201 "//ui/gl:test_support", |
| 201 ] | 202 ] |
| 202 } | 203 } |
| OLD | NEW |