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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 deps = [ | 83 deps = [ |
84 "//ash/wm/common:ash_wm_common", | 84 "//ash/wm/common:ash_wm_common", |
85 "//base", | 85 "//base", |
86 "//components/mus/common:mus_common", | 86 "//components/mus/common:mus_common", |
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 "//mojo/converters/geometry", | |
94 "//mojo/converters/input_events", | 93 "//mojo/converters/input_events", |
95 "//services/shell/public/cpp", | 94 "//services/shell/public/cpp", |
96 "//services/tracing/public/cpp", | 95 "//services/tracing/public/cpp", |
97 "//skia", | 96 "//skia", |
98 "//ui/aura", | 97 "//ui/aura", |
99 "//ui/events", | 98 "//ui/events", |
100 "//ui/gfx", | 99 "//ui/gfx", |
101 "//ui/gfx/geometry", | 100 "//ui/gfx/geometry", |
| 101 "//ui/gfx/geometry/mojo", |
102 "//ui/mojo/display", | 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" |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 ":resources", | 177 ":resources", |
178 "//ash/wm/common:ash_wm_common", | 178 "//ash/wm/common:ash_wm_common", |
179 "//base", | 179 "//base", |
180 "//base/test:test_config", | 180 "//base/test:test_config", |
181 "//components/mus/common:mus_common", | 181 "//components/mus/common:mus_common", |
182 "//components/mus/public/cpp", | 182 "//components/mus/public/cpp", |
183 "//components/mus/public/cpp/tests:test_support", | 183 "//components/mus/public/cpp/tests:test_support", |
184 "//components/mus/public/cpp/tests:unittest_support", | 184 "//components/mus/public/cpp/tests:unittest_support", |
185 "//components/mus/public/interfaces", | 185 "//components/mus/public/interfaces", |
186 "//mash/wm/public/interfaces", | 186 "//mash/wm/public/interfaces", |
187 "//mojo/converters/geometry", | |
188 "//mojo/converters/input_events", | 187 "//mojo/converters/input_events", |
189 "//mojo/edk/system", | 188 "//mojo/edk/system", |
190 "//mojo/public/cpp/system", | 189 "//mojo/public/cpp/system", |
191 "//services/shell/public/cpp:shell_test_support", | 190 "//services/shell/public/cpp:shell_test_support", |
192 "//testing/gtest", | 191 "//testing/gtest", |
193 "//ui/aura", | 192 "//ui/aura", |
194 "//ui/base", | 193 "//ui/base", |
195 "//ui/display", | 194 "//ui/display", |
196 "//ui/events", | 195 "//ui/events", |
197 "//ui/gfx:test_support", | 196 "//ui/gfx:test_support", |
198 "//ui/gfx/geometry", | 197 "//ui/gfx/geometry", |
199 "//ui/mojo/geometry:interfaces", | 198 "//ui/gfx/geometry/mojo", |
200 "//ui/mojo/geometry:util", | 199 "//ui/gfx/geometry/mojo:interfaces", |
| 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 |