| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "//base/test:test_support", | 207 "//base/test:test_support", |
| 208 "//cc:cc", | 208 "//cc:cc", |
| 209 "//components/mus/common:mus_common", | 209 "//components/mus/common:mus_common", |
| 210 "//components/mus/public/cpp", | 210 "//components/mus/public/cpp", |
| 211 "//components/mus/public/cpp/tests:test_support", | 211 "//components/mus/public/cpp/tests:test_support", |
| 212 "//components/mus/public/interfaces", | 212 "//components/mus/public/interfaces", |
| 213 "//components/mus/surfaces", | 213 "//components/mus/surfaces", |
| 214 "//mojo/converters/geometry", | 214 "//mojo/converters/geometry", |
| 215 "//mojo/converters/input_events", | 215 "//mojo/converters/input_events", |
| 216 "//mojo/converters/transform", | 216 "//mojo/converters/transform", |
| 217 "//mojo/gles2", | |
| 218 "//mojo/public/cpp/bindings:bindings", | 217 "//mojo/public/cpp/bindings:bindings", |
| 219 "//services/shell/public/cpp:shell_test_support", | 218 "//services/shell/public/cpp:shell_test_support", |
| 220 "//services/shell/public/cpp:sources", | 219 "//services/shell/public/cpp:sources", |
| 221 "//services/shell/public/cpp/test:run_all_shelltests", | 220 "//services/shell/public/cpp/test:run_all_shelltests", |
| 222 "//services/shell/public/interfaces", | 221 "//services/shell/public/interfaces", |
| 223 "//testing/gtest", | 222 "//testing/gtest", |
| 224 "//third_party/mesa:osmesa", | 223 "//third_party/mesa:osmesa", |
| 225 "//ui/events", | 224 "//ui/events", |
| 226 "//ui/gfx", | 225 "//ui/gfx", |
| 227 "//ui/gfx:test_support", | 226 "//ui/gfx:test_support", |
| 228 "//ui/gfx/geometry", | 227 "//ui/gfx/geometry", |
| 229 "//ui/gl", | 228 "//ui/gl", |
| 230 "//ui/mojo/geometry:interfaces", | 229 "//ui/mojo/geometry:interfaces", |
| 231 "//ui/mojo/geometry:util", | 230 "//ui/mojo/geometry:util", |
| 232 ] | 231 ] |
| 233 | 232 |
| 234 if (use_x11) { | 233 if (use_x11) { |
| 235 deps += [ "//tools/xdisplaycheck" ] | 234 deps += [ "//tools/xdisplaycheck" ] |
| 236 } | 235 } |
| 237 | 236 |
| 238 data_deps = [ | 237 data_deps = [ |
| 239 ":mus_ws_unittests_app_manifest", | 238 ":mus_ws_unittests_app_manifest", |
| 240 ] | 239 ] |
| 241 } | 240 } |
| 242 | 241 |
| 243 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 242 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 244 application_name = "mus_ws_unittests_app" | 243 application_name = "mus_ws_unittests_app" |
| 245 source = "mus_ws_unittests_app_manifest.json" | 244 source = "mus_ws_unittests_app_manifest.json" |
| 246 } | 245 } |
| OLD | NEW |