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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 "//base", | 144 "//base", |
145 "//base/test:test_config", | 145 "//base/test:test_config", |
146 "//cc:cc", | 146 "//cc:cc", |
147 "//components/mus/common", | 147 "//components/mus/common", |
148 "//components/mus/public/cpp", | 148 "//components/mus/public/cpp", |
149 "//components/mus/public/interfaces", | 149 "//components/mus/public/interfaces", |
150 "//components/mus/surfaces", | 150 "//components/mus/surfaces", |
151 "//mojo/converters/geometry", | 151 "//mojo/converters/geometry", |
152 "//mojo/converters/input_events", | 152 "//mojo/converters/input_events", |
153 "//mojo/converters/transform", | 153 "//mojo/converters/transform", |
| 154 "//mojo/edk/test:run_all_unittests", |
154 "//mojo/environment:chromium", | 155 "//mojo/environment:chromium", |
155 "//mojo/gles2", | 156 "//mojo/gles2", |
156 "//mojo/platform_handle", | 157 "//mojo/platform_handle", |
157 "//mojo/public/cpp/bindings:bindings", | 158 "//mojo/public/cpp/bindings:bindings", |
158 "//mojo/shell/public/interfaces", | 159 "//mojo/shell/public/interfaces", |
159 "//testing/gtest", | 160 "//testing/gtest", |
160 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | |
161 "//ui/events", | 161 "//ui/events", |
162 "//ui/gfx", | 162 "//ui/gfx", |
163 "//ui/gfx:test_support", | 163 "//ui/gfx:test_support", |
164 "//ui/gfx/geometry", | 164 "//ui/gfx/geometry", |
165 "//ui/mojo/geometry:interfaces", | 165 "//ui/mojo/geometry:interfaces", |
166 ] | 166 ] |
167 | 167 |
168 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. | 168 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. |
169 deps += [ "//third_party/mesa:osmesa" ] | 169 deps += [ "//third_party/mesa:osmesa" ] |
170 } | 170 } |
(...skipping 26 matching lines...) Expand all Loading... |
197 ] | 197 ] |
198 | 198 |
199 data_deps = [ | 199 data_deps = [ |
200 ":lib", | 200 ":lib", |
201 ] | 201 ] |
202 | 202 |
203 if (use_x11) { | 203 if (use_x11) { |
204 deps += [ "//tools/xdisplaycheck" ] | 204 deps += [ "//tools/xdisplaycheck" ] |
205 } | 205 } |
206 } | 206 } |
OLD | NEW |