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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 "window_manager.h", | 66 "window_manager.h", |
67 "window_manager_application.cc", | 67 "window_manager_application.cc", |
68 "window_manager_application.h", | 68 "window_manager_application.h", |
69 ] | 69 ] |
70 | 70 |
71 deps = [ | 71 deps = [ |
72 "//base", | 72 "//base", |
73 "//components/mus/common:mus_common", | 73 "//components/mus/common:mus_common", |
74 "//components/mus/public/cpp", | 74 "//components/mus/public/cpp", |
75 "//components/mus/public/interfaces", | 75 "//components/mus/public/interfaces", |
76 "//mash/shell/public/interfaces", | 76 "//mash/session/public/interfaces", |
77 "//mash/wm/public/interfaces", | 77 "//mash/wm/public/interfaces", |
78 "//mash/wm/resources", | 78 "//mash/wm/resources", |
79 "//mojo/common:common_base", | 79 "//mojo/common:common_base", |
80 "//mojo/converters/geometry", | 80 "//mojo/converters/geometry", |
81 "//mojo/converters/input_events", | 81 "//mojo/converters/input_events", |
82 "//mojo/services/tracing/public/cpp", | 82 "//mojo/services/tracing/public/cpp", |
83 "//mojo/shell/public/cpp", | 83 "//mojo/shell/public/cpp", |
84 "//skia", | 84 "//skia", |
85 "//ui/aura", | 85 "//ui/aura", |
86 "//ui/events", | 86 "//ui/events", |
(...skipping 13 matching lines...) Expand all Loading... |
100 sources = [ | 100 sources = [ |
101 "main.cc", | 101 "main.cc", |
102 ] | 102 ] |
103 | 103 |
104 deps = [ | 104 deps = [ |
105 ":lib", | 105 ":lib", |
106 ":resources", | 106 ":resources", |
107 "//mojo/shell/public/cpp", | 107 "//mojo/shell/public/cpp", |
108 ] | 108 ] |
109 | 109 |
110 # TODO(beng): This target relies on //mash/shell, but there is a cycle so we | 110 # TODO(beng): This target relies on //mash/session, but there is a cycle so we |
111 # can't state that dependency here. | 111 # can't state that dependency here. |
112 data_deps = [ | 112 data_deps = [ |
113 ":manifest", | 113 ":manifest", |
114 "//components/mus", | 114 "//components/mus", |
115 ] | 115 ] |
116 | 116 |
117 resources = [ "$root_out_dir/mash_wm_resources.pak" ] | 117 resources = [ "$root_out_dir/mash_wm_resources.pak" ] |
118 } | 118 } |
119 | 119 |
120 mojo_application_manifest("manifest") { | 120 mojo_application_manifest("manifest") { |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 "//mojo/public/cpp/system", | 200 "//mojo/public/cpp/system", |
201 "//testing/gtest", | 201 "//testing/gtest", |
202 "//ui/base", | 202 "//ui/base", |
203 "//ui/events", | 203 "//ui/events", |
204 "//ui/gfx:test_support", | 204 "//ui/gfx:test_support", |
205 "//ui/gfx/geometry", | 205 "//ui/gfx/geometry", |
206 "//ui/mojo/geometry:interfaces", | 206 "//ui/mojo/geometry:interfaces", |
207 "//ui/mojo/geometry:util", | 207 "//ui/mojo/geometry:util", |
208 ] | 208 ] |
209 } | 209 } |
OLD | NEW |