OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 | 8 |
9 source_set("lib") { | 9 source_set("lib") { |
10 sources = [ | 10 sources = [ |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 "//mojo/shell/public/cpp:test_support", | 191 "//mojo/shell/public/cpp:test_support", |
192 "//ui/gfx:test_support", | 192 "//ui/gfx:test_support", |
193 "//ui/gfx/geometry", | 193 "//ui/gfx/geometry", |
194 "//ui/mojo/geometry:interfaces", | 194 "//ui/mojo/geometry:interfaces", |
195 "//ui/mojo/geometry:util", | 195 "//ui/mojo/geometry:util", |
196 ] | 196 ] |
197 | 197 |
198 data_deps = [ | 198 data_deps = [ |
199 ":lib", | 199 ":lib", |
200 ] | 200 ] |
| 201 |
| 202 if (use_x11) { |
| 203 deps += [ "//tools/xdisplaycheck" ] |
| 204 } |
201 } | 205 } |
OLD | NEW |