| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//mojo/public/mojo_application_manifest.gni") | 7 import("//mojo/public/mojo_application_manifest.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "//components/mus/public/cpp", | 87 "//components/mus/public/cpp", |
| 88 "//components/mus/public/interfaces", | 88 "//components/mus/public/interfaces", |
| 89 "//mash/session/public/interfaces", | 89 "//mash/session/public/interfaces", |
| 90 "//mash/wm/public/interfaces", | 90 "//mash/wm/public/interfaces", |
| 91 "//mash/wm/resources", | 91 "//mash/wm/resources", |
| 92 "//mojo/common:common_base", | 92 "//mojo/common:common_base", |
| 93 "//services/shell/public/cpp", | 93 "//services/shell/public/cpp", |
| 94 "//services/tracing/public/cpp", | 94 "//services/tracing/public/cpp", |
| 95 "//skia", | 95 "//skia", |
| 96 "//ui/aura", | 96 "//ui/aura", |
| 97 "//ui/display/mojo", |
| 97 "//ui/events", | 98 "//ui/events", |
| 98 "//ui/events/mojo", | 99 "//ui/events/mojo", |
| 99 "//ui/gfx", | 100 "//ui/gfx", |
| 100 "//ui/gfx/geometry", | 101 "//ui/gfx/geometry", |
| 101 "//ui/gfx/geometry/mojo", | 102 "//ui/gfx/geometry/mojo", |
| 102 "//ui/mojo/display", | |
| 103 "//ui/resources", | 103 "//ui/resources", |
| 104 "//ui/strings", | 104 "//ui/strings", |
| 105 "//ui/views", | 105 "//ui/views", |
| 106 "//ui/views/mus:for_mojo_application", | 106 "//ui/views/mus:for_mojo_application", |
| 107 ] | 107 ] |
| 108 } | 108 } |
| 109 | 109 |
| 110 mojo_native_application("wm") { | 110 mojo_native_application("wm") { |
| 111 output_name = "desktop_wm" | 111 output_name = "desktop_wm" |
| 112 | 112 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 "//ui/gfx/geometry/mojo:interfaces", | 199 "//ui/gfx/geometry/mojo:interfaces", |
| 200 "//ui/gfx/geometry/mojo:util", | 200 "//ui/gfx/geometry/mojo:util", |
| 201 "//ui/views/mus", | 201 "//ui/views/mus", |
| 202 ] | 202 ] |
| 203 | 203 |
| 204 data_deps = [ | 204 data_deps = [ |
| 205 ":wm", | 205 ":wm", |
| 206 "//mash/quick_launch", | 206 "//mash/quick_launch", |
| 207 ] | 207 ] |
| 208 } | 208 } |
| OLD | NEW |