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 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
9 | 9 |
10 source_set("lib") { | 10 source_set("lib") { |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 "//mojo/converters/input_events", | 215 "//mojo/converters/input_events", |
216 "//mojo/converters/transform", | 216 "//mojo/converters/transform", |
217 "//mojo/gles2", | 217 "//mojo/gles2", |
218 "//mojo/platform_handle:for_component", | 218 "//mojo/platform_handle:for_component", |
219 "//mojo/public/cpp/bindings:bindings", | 219 "//mojo/public/cpp/bindings:bindings", |
220 "//services/shell/public/cpp:shell_test_support", | 220 "//services/shell/public/cpp:shell_test_support", |
221 "//services/shell/public/cpp:sources", | 221 "//services/shell/public/cpp:sources", |
222 "//services/shell/public/cpp/test:run_all_shelltests", | 222 "//services/shell/public/cpp/test:run_all_shelltests", |
223 "//services/shell/public/interfaces", | 223 "//services/shell/public/interfaces", |
224 "//testing/gtest", | 224 "//testing/gtest", |
| 225 "//third_party/mesa:osmesa", |
225 "//ui/events", | 226 "//ui/events", |
226 "//ui/gfx", | 227 "//ui/gfx", |
227 "//ui/gfx:test_support", | 228 "//ui/gfx:test_support", |
228 "//ui/gfx/geometry", | 229 "//ui/gfx/geometry", |
229 "//ui/gl", | 230 "//ui/gl", |
230 "//ui/mojo/geometry:interfaces", | 231 "//ui/mojo/geometry:interfaces", |
231 "//ui/mojo/geometry:util", | 232 "//ui/mojo/geometry:util", |
232 ] | 233 ] |
233 | 234 |
234 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. | |
235 deps += [ "//third_party/mesa:osmesa" ] | |
236 } | |
237 | |
238 if (use_x11) { | 235 if (use_x11) { |
239 deps += [ "//tools/xdisplaycheck" ] | 236 deps += [ "//tools/xdisplaycheck" ] |
240 } | 237 } |
241 | 238 |
242 data_deps = [ | 239 data_deps = [ |
243 ":mus_ws_unittests_app_manifest", | 240 ":mus_ws_unittests_app_manifest", |
244 ] | 241 ] |
245 } | 242 } |
246 | 243 |
247 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 244 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
248 application_name = "mus_ws_unittests_app" | 245 application_name = "mus_ws_unittests_app" |
249 source = "mus_ws_unittests_app_manifest.json" | 246 source = "mus_ws_unittests_app_manifest.json" |
250 } | 247 } |
OLD | NEW |