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

Side by Side Diff: ash/mus/BUILD.gn

Issue 2119963002: Move mus to //services/ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 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 | « WATCHLISTS ('k') | ash/mus/DEPS » ('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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 deps = [ 79 deps = [
80 "//components/user_manager", 80 "//components/user_manager",
81 ] 81 ]
82 82
83 public_deps = [ 83 public_deps = [
84 "//ash", 84 "//ash",
85 "//ash/mus/resources", 85 "//ash/mus/resources",
86 "//ash/public/interfaces", 86 "//ash/public/interfaces",
87 "//base", 87 "//base",
88 "//components/mus/common:mus_common",
89 "//components/mus/public/cpp",
90 "//components/mus/public/interfaces",
91 "//mash/session/public/interfaces", 88 "//mash/session/public/interfaces",
92 "//mojo/common:common_base", 89 "//mojo/common:common_base",
93 "//services/shell/public/cpp", 90 "//services/shell/public/cpp",
94 "//services/tracing/public/cpp", 91 "//services/tracing/public/cpp",
92 "//services/ui/common:mus_common",
93 "//services/ui/public/cpp",
94 "//services/ui/public/interfaces",
95 "//skia", 95 "//skia",
96 "//ui/aura", 96 "//ui/aura",
97 "//ui/display/mojo", 97 "//ui/display/mojo",
98 "//ui/events", 98 "//ui/events",
99 "//ui/gfx", 99 "//ui/gfx",
100 "//ui/gfx/geometry", 100 "//ui/gfx/geometry",
101 "//ui/gfx/geometry/mojo", 101 "//ui/gfx/geometry/mojo",
102 "//ui/resources", 102 "//ui/resources",
103 "//ui/strings", 103 "//ui/strings",
104 "//ui/views", 104 "//ui/views",
(...skipping 11 matching lines...) Expand all
116 deps = [ 116 deps = [
117 ":lib", 117 ":lib",
118 ":resources", 118 ":resources",
119 "//services/shell/public/cpp", 119 "//services/shell/public/cpp",
120 ] 120 ]
121 121
122 # TODO(beng): This target relies on //mash/session, but there is a cycle so we 122 # TODO(beng): This target relies on //mash/session, but there is a cycle so we
123 # can't state that dependency here. 123 # can't state that dependency here.
124 data_deps = [ 124 data_deps = [
125 ":manifest", 125 ":manifest",
126 "//components/mus", 126 "//services/ui",
127 ] 127 ]
128 128
129 resources = [ "$root_out_dir/ash_mus_resources.pak" ] 129 resources = [ "$root_out_dir/ash_mus_resources.pak" ]
130 } 130 }
131 131
132 mojo_application_manifest("manifest") { 132 mojo_application_manifest("manifest") {
133 application_name = "ash" 133 application_name = "ash"
134 source = "manifest.json" 134 source = "manifest.json"
135 } 135 }
136 136
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 "workspace/workspace_layout_manager_unittest.cc", 172 "workspace/workspace_layout_manager_unittest.cc",
173 ] 173 ]
174 174
175 deps = [ 175 deps = [
176 ":lib", 176 ":lib",
177 ":resources", 177 ":resources",
178 "//ash", 178 "//ash",
179 "//ash/public/interfaces", 179 "//ash/public/interfaces",
180 "//base", 180 "//base",
181 "//base/test:test_config", 181 "//base/test:test_config",
182 "//components/mus/common:mus_common",
183 "//components/mus/public/cpp",
184 "//components/mus/public/cpp/tests:test_support",
185 "//components/mus/public/cpp/tests:unittest_support",
186 "//components/mus/public/interfaces",
187 "//mojo/public/cpp/system", 182 "//mojo/public/cpp/system",
188 "//services/shell/public/cpp:shell_test_support", 183 "//services/shell/public/cpp:shell_test_support",
184 "//services/ui/common:mus_common",
185 "//services/ui/public/cpp",
186 "//services/ui/public/cpp/tests:test_support",
187 "//services/ui/public/cpp/tests:unittest_support",
188 "//services/ui/public/interfaces",
189 "//skia", 189 "//skia",
190 "//testing/gtest", 190 "//testing/gtest",
191 "//ui/aura", 191 "//ui/aura",
192 "//ui/base", 192 "//ui/base",
193 "//ui/display", 193 "//ui/display",
194 "//ui/events", 194 "//ui/events",
195 "//ui/gfx:test_support", 195 "//ui/gfx:test_support",
196 "//ui/gfx/geometry", 196 "//ui/gfx/geometry",
197 "//ui/gfx/geometry/mojo", 197 "//ui/gfx/geometry/mojo",
198 "//ui/views/mus", 198 "//ui/views/mus",
199 ] 199 ]
200 200
201 data_deps = [ 201 data_deps = [
202 ":mus", 202 ":mus",
203 "//mash/quick_launch", 203 "//mash/quick_launch",
204 ] 204 ]
205 } 205 }
OLDNEW
« no previous file with comments | « WATCHLISTS ('k') | ash/mus/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698