| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "//components/mus/public/interfaces", | 101 "//components/mus/public/interfaces", |
| 102 "//components/mus/surfaces", | 102 "//components/mus/surfaces", |
| 103 "//mojo/common:common_base", | 103 "//mojo/common:common_base", |
| 104 "//mojo/public/cpp/bindings:callback", | 104 "//mojo/public/cpp/bindings:callback", |
| 105 "//services/shell/public/cpp", | 105 "//services/shell/public/cpp", |
| 106 "//services/shell/public/interfaces", | 106 "//services/shell/public/interfaces", |
| 107 "//services/tracing/public/cpp", | 107 "//services/tracing/public/cpp", |
| 108 "//ui/base", | 108 "//ui/base", |
| 109 "//ui/display", | 109 "//ui/display", |
| 110 "//ui/events", | 110 "//ui/events", |
| 111 "//ui/events/mojo", | |
| 112 "//ui/events/platform", | 111 "//ui/events/platform", |
| 113 "//ui/gfx", | 112 "//ui/gfx", |
| 114 "//ui/gfx/geometry", | 113 "//ui/gfx/geometry", |
| 115 "//ui/gfx/geometry/mojo", | 114 "//ui/gfx/geometry/mojo", |
| 116 "//ui/gl", | 115 "//ui/gl", |
| 117 "//ui/platform_window", | 116 "//ui/platform_window", |
| 118 "//ui/platform_window:platform_impls", | 117 "//ui/platform_window:platform_impls", |
| 119 "//ui/platform_window/mojo", | 118 "//ui/platform_window/mojo", |
| 120 ] | 119 ] |
| 121 | 120 |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 "//components/mus/public/interfaces", | 211 "//components/mus/public/interfaces", |
| 213 "//components/mus/surfaces", | 212 "//components/mus/surfaces", |
| 214 "//mojo/public/cpp/bindings:bindings", | 213 "//mojo/public/cpp/bindings:bindings", |
| 215 "//services/shell/public/cpp:shell_test_support", | 214 "//services/shell/public/cpp:shell_test_support", |
| 216 "//services/shell/public/cpp:sources", | 215 "//services/shell/public/cpp:sources", |
| 217 "//services/shell/public/cpp/test:run_all_shelltests", | 216 "//services/shell/public/cpp/test:run_all_shelltests", |
| 218 "//services/shell/public/interfaces", | 217 "//services/shell/public/interfaces", |
| 219 "//testing/gtest", | 218 "//testing/gtest", |
| 220 "//third_party/mesa:osmesa", | 219 "//third_party/mesa:osmesa", |
| 221 "//ui/events", | 220 "//ui/events", |
| 222 "//ui/events/mojo", | |
| 223 "//ui/gfx", | 221 "//ui/gfx", |
| 224 "//ui/gfx:test_support", | 222 "//ui/gfx:test_support", |
| 225 "//ui/gfx/geometry", | 223 "//ui/gfx/geometry", |
| 226 "//ui/gfx/geometry/mojo", | 224 "//ui/gfx/geometry/mojo", |
| 227 "//ui/gl", | 225 "//ui/gl", |
| 228 ] | 226 ] |
| 229 | 227 |
| 230 if (use_x11) { | 228 if (use_x11) { |
| 231 deps += [ "//tools/xdisplaycheck" ] | 229 deps += [ "//tools/xdisplaycheck" ] |
| 232 } | 230 } |
| 233 | 231 |
| 234 data_deps = [ | 232 data_deps = [ |
| 235 ":mus_ws_unittests_app_manifest", | 233 ":mus_ws_unittests_app_manifest", |
| 236 ] | 234 ] |
| 237 } | 235 } |
| 238 | 236 |
| 239 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 237 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 240 application_name = "mus_ws_unittests_app" | 238 application_name = "mus_ws_unittests_app" |
| 241 source = "mus_ws_unittests_app_manifest.json" | 239 source = "mus_ws_unittests_app_manifest.json" |
| 242 } | 240 } |
| OLD | NEW |