| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 deps = [ | 201 deps = [ |
| 202 ":lib", | 202 ":lib", |
| 203 ":test_support", | 203 ":test_support", |
| 204 "//base", | 204 "//base", |
| 205 "//base/test:test_config", | 205 "//base/test:test_config", |
| 206 "//base/test:test_support", | 206 "//base/test:test_support", |
| 207 "//cc:cc", | 207 "//cc:cc", |
| 208 "//components/mus/common:mus_common", | 208 "//components/mus/common:mus_common", |
| 209 "//components/mus/public/cpp", | 209 "//components/mus/public/cpp", |
| 210 "//components/mus/public/cpp/tests:test_support", | 210 "//components/mus/public/cpp/tests:test_support", |
| 211 "//components/mus/public/cpp/tests:unittest_support", |
| 211 "//components/mus/public/interfaces", | 212 "//components/mus/public/interfaces", |
| 212 "//components/mus/surfaces", | 213 "//components/mus/surfaces", |
| 213 "//mojo/public/cpp/bindings:bindings", | 214 "//mojo/public/cpp/bindings:bindings", |
| 214 "//services/shell/public/cpp:shell_test_support", | 215 "//services/shell/public/cpp:shell_test_support", |
| 215 "//services/shell/public/cpp:sources", | 216 "//services/shell/public/cpp:sources", |
| 216 "//services/shell/public/cpp/test:run_all_shelltests", | 217 "//services/shell/public/cpp/test:run_all_shelltests", |
| 217 "//services/shell/public/interfaces", | 218 "//services/shell/public/interfaces", |
| 218 "//testing/gtest", | 219 "//testing/gtest", |
| 219 "//third_party/mesa:osmesa", | 220 "//third_party/mesa:osmesa", |
| 220 "//ui/events", | 221 "//ui/events", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 231 | 232 |
| 232 data_deps = [ | 233 data_deps = [ |
| 233 ":mus_ws_unittests_app_manifest", | 234 ":mus_ws_unittests_app_manifest", |
| 234 ] | 235 ] |
| 235 } | 236 } |
| 236 | 237 |
| 237 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 238 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 238 application_name = "mus_ws_unittests_app" | 239 application_name = "mus_ws_unittests_app" |
| 239 source = "mus_ws_unittests_app_manifest.json" | 240 source = "mus_ws_unittests_app_manifest.json" |
| 240 } | 241 } |
| OLD | NEW |