Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Side by Side Diff: mash/wm/BUILD.gn

Issue 1877753003: Move mojo\shell to services\shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@62scan
Patch Set: . Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mash/task_viewer/task_viewer.cc ('k') | mash/wm/accelerator_registrar_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
66 "//components/mus/common:mus_common", 66 "//components/mus/common:mus_common",
67 "//components/mus/public/cpp", 67 "//components/mus/public/cpp",
68 "//components/mus/public/interfaces", 68 "//components/mus/public/interfaces",
69 "//mash/session/public/interfaces", 69 "//mash/session/public/interfaces",
70 "//mash/wm/public/interfaces", 70 "//mash/wm/public/interfaces",
71 "//mash/wm/resources", 71 "//mash/wm/resources",
72 "//mojo/common:common_base", 72 "//mojo/common:common_base",
73 "//mojo/converters/geometry", 73 "//mojo/converters/geometry",
74 "//mojo/converters/input_events", 74 "//mojo/converters/input_events",
75 "//mojo/services/tracing/public/cpp", 75 "//mojo/services/tracing/public/cpp",
76 "//mojo/shell/public/cpp", 76 "//services/shell/public/cpp",
77 "//skia", 77 "//skia",
78 "//ui/aura", 78 "//ui/aura",
79 "//ui/events", 79 "//ui/events",
80 "//ui/gfx", 80 "//ui/gfx",
81 "//ui/gfx/geometry", 81 "//ui/gfx/geometry",
82 "//ui/mojo/init", 82 "//ui/mojo/init",
83 "//ui/resources", 83 "//ui/resources",
84 "//ui/strings", 84 "//ui/strings",
85 "//ui/views", 85 "//ui/views",
86 "//ui/views/mus:for_mojo_application", 86 "//ui/views/mus:for_mojo_application",
87 ] 87 ]
88 } 88 }
89 89
90 mojo_native_application("wm") { 90 mojo_native_application("wm") {
91 output_name = "desktop_wm" 91 output_name = "desktop_wm"
92 92
93 sources = [ 93 sources = [
94 "main.cc", 94 "main.cc",
95 ] 95 ]
96 96
97 deps = [ 97 deps = [
98 ":lib", 98 ":lib",
99 ":resources", 99 ":resources",
100 "//mojo/shell/public/cpp", 100 "//services/shell/public/cpp",
101 ] 101 ]
102 102
103 # TODO(beng): This target relies on //mash/session, but there is a cycle so we 103 # TODO(beng): This target relies on //mash/session, but there is a cycle so we
104 # can't state that dependency here. 104 # can't state that dependency here.
105 data_deps = [ 105 data_deps = [
106 ":manifest", 106 ":manifest",
107 "//components/mus", 107 "//components/mus",
108 ] 108 ]
109 109
110 resources = [ "$root_out_dir/mash_wm_resources.pak" ] 110 resources = [ "$root_out_dir/mash_wm_resources.pak" ]
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 "//base/test:test_config", 149 "//base/test:test_config",
150 "//components/mus/public/cpp", 150 "//components/mus/public/cpp",
151 "//components/mus/public/cpp/tests:unittest_support", 151 "//components/mus/public/cpp/tests:unittest_support",
152 "//components/mus/public/interfaces", 152 "//components/mus/public/interfaces",
153 "//mojo/converters/geometry", 153 "//mojo/converters/geometry",
154 "//mojo/converters/input_events", 154 "//mojo/converters/input_events",
155 "//mojo/edk/system", 155 "//mojo/edk/system",
156 "//mojo/gles2", 156 "//mojo/gles2",
157 "//mojo/platform_handle", 157 "//mojo/platform_handle",
158 "//mojo/public/cpp/system", 158 "//mojo/public/cpp/system",
159 "//mojo/shell/public/cpp:shell_test_support", 159 "//services/shell/public/cpp:shell_test_support",
160 "//testing/gtest", 160 "//testing/gtest",
161 "//ui/base", 161 "//ui/base",
162 "//ui/events", 162 "//ui/events",
163 "//ui/gfx:test_support", 163 "//ui/gfx:test_support",
164 "//ui/gfx/geometry", 164 "//ui/gfx/geometry",
165 "//ui/mojo/geometry:interfaces", 165 "//ui/mojo/geometry:interfaces",
166 "//ui/mojo/geometry:util", 166 "//ui/mojo/geometry:util",
167 ] 167 ]
168 } 168 }
OLDNEW
« no previous file with comments | « mash/task_viewer/task_viewer.cc ('k') | mash/wm/accelerator_registrar_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698