| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "//cc", | 94 "//cc", |
| 95 "//cc/ipc:interfaces", | 95 "//cc/ipc:interfaces", |
| 96 "//cc/surfaces", | 96 "//cc/surfaces", |
| 97 "//cc/surfaces:surface_id", | 97 "//cc/surfaces:surface_id", |
| 98 "//components/mus/common:mus_common", | 98 "//components/mus/common:mus_common", |
| 99 "//components/mus/gles2", | 99 "//components/mus/gles2", |
| 100 "//components/mus/public/cpp/surfaces", | 100 "//components/mus/public/cpp/surfaces", |
| 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", |
| 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/platform", | 111 "//ui/events/platform", |
| 112 "//ui/gfx", | 112 "//ui/gfx", |
| 113 "//ui/gfx/geometry", | 113 "//ui/gfx/geometry", |
| 114 "//ui/gfx/geometry/mojo", | 114 "//ui/gfx/geometry/mojo", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 | 231 |
| 232 data_deps = [ | 232 data_deps = [ |
| 233 ":mus_ws_unittests_app_manifest", | 233 ":mus_ws_unittests_app_manifest", |
| 234 ] | 234 ] |
| 235 } | 235 } |
| 236 | 236 |
| 237 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 237 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 238 application_name = "mus_ws_unittests_app" | 238 application_name = "mus_ws_unittests_app" |
| 239 source = "mus_ws_unittests_app_manifest.json" | 239 source = "mus_ws_unittests_app_manifest.json" |
| 240 } | 240 } |
| OLD | NEW |