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

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

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 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/wallpaper/wallpaper.cc ('k') | mash/wm/accelerator_registrar_apptest.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/tools/bindings/mojom.gni") 7 import("//mojo/public/tools/bindings/mojom.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 group("tests") { 10 group("tests") {
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 "window_manager_impl.h", 58 "window_manager_impl.h",
59 ] 59 ]
60 60
61 deps = [ 61 deps = [
62 "//base", 62 "//base",
63 "//components/mus/common", 63 "//components/mus/common",
64 "//components/mus/public/cpp", 64 "//components/mus/public/cpp",
65 "//components/mus/public/interfaces", 65 "//components/mus/public/interfaces",
66 "//mash/wm/public/interfaces", 66 "//mash/wm/public/interfaces",
67 "//mash/wm/resources", 67 "//mash/wm/resources",
68 "//mojo/application/public/cpp",
69 "//mojo/common:common_base", 68 "//mojo/common:common_base",
70 "//mojo/converters/geometry", 69 "//mojo/converters/geometry",
71 "//mojo/converters/input_events", 70 "//mojo/converters/input_events",
72 "//mojo/services/tracing/public/cpp", 71 "//mojo/services/tracing/public/cpp",
72 "//mojo/shell/public/cpp",
73 "//skia", 73 "//skia",
74 "//ui/aura", 74 "//ui/aura",
75 "//ui/events", 75 "//ui/events",
76 "//ui/gfx", 76 "//ui/gfx",
77 "//ui/gfx/geometry", 77 "//ui/gfx/geometry",
78 "//ui/mojo/init", 78 "//ui/mojo/init",
79 "//ui/resources", 79 "//ui/resources",
80 "//ui/strings", 80 "//ui/strings",
81 "//ui/views", 81 "//ui/views",
82 "//ui/views/mus:for_mojo_application", 82 "//ui/views/mus:for_mojo_application",
83 ] 83 ]
84 } 84 }
85 85
86 mojo_native_application("wm") { 86 mojo_native_application("wm") {
87 output_name = "desktop_wm" 87 output_name = "desktop_wm"
88 88
89 sources = [ 89 sources = [
90 "main.cc", 90 "main.cc",
91 ] 91 ]
92 92
93 deps = [ 93 deps = [
94 ":lib", 94 ":lib",
95 ":resources", 95 ":resources",
96 "//mojo/application/public/cpp", 96 "//mojo/shell/public/cpp",
97 ] 97 ]
98 98
99 data_deps = [ 99 data_deps = [
100 "//components/mus", 100 "//components/mus",
101 ] 101 ]
102 102
103 resources = [ "$root_out_dir/mash_wm_resources.pak" ] 103 resources = [ "$root_out_dir/mash_wm_resources.pak" ]
104 } 104 }
105 105
106 repack("resources") { 106 repack("resources") {
(...skipping 22 matching lines...) Expand all
129 "accelerator_registrar_apptest.cc", 129 "accelerator_registrar_apptest.cc",
130 "window_manager_apptest.cc", 130 "window_manager_apptest.cc",
131 ] 131 ]
132 132
133 deps = [ 133 deps = [
134 "//base", 134 "//base",
135 "//base/test:test_config", 135 "//base/test:test_config",
136 "//components/mus/public/cpp", 136 "//components/mus/public/cpp",
137 "//components/mus/public/cpp/tests:test_support", 137 "//components/mus/public/cpp/tests:test_support",
138 "//components/mus/public/interfaces", 138 "//components/mus/public/interfaces",
139 "//mojo/application/public/cpp:sources",
140 "//mojo/application/public/cpp:test_support",
141 "//mojo/common:common_base", 139 "//mojo/common:common_base",
142 "//mojo/converters/geometry", 140 "//mojo/converters/geometry",
141 "//mojo/shell/public/cpp:sources",
142 "//mojo/shell/public/cpp:test_support",
143 "//ui/mojo/geometry:interfaces", 143 "//ui/mojo/geometry:interfaces",
144 "//ui/mojo/geometry:util", 144 "//ui/mojo/geometry:util",
145 ] 145 ]
146 146
147 data_deps = [ 147 data_deps = [
148 ":wm", 148 ":wm",
149 ] 149 ]
150 } 150 }
151 151
152 source_set("unittests") { 152 source_set("unittests") {
(...skipping 18 matching lines...) Expand all
171 "//testing/gtest", 171 "//testing/gtest",
172 "//third_party/mojo/src/mojo/edk/system", 172 "//third_party/mojo/src/mojo/edk/system",
173 "//ui/base", 173 "//ui/base",
174 "//ui/events", 174 "//ui/events",
175 "//ui/gfx:test_support", 175 "//ui/gfx:test_support",
176 "//ui/gfx/geometry", 176 "//ui/gfx/geometry",
177 "//ui/mojo/geometry:interfaces", 177 "//ui/mojo/geometry:interfaces",
178 "//ui/mojo/geometry:util", 178 "//ui/mojo/geometry:util",
179 ] 179 ]
180 } 180 }
OLDNEW
« no previous file with comments | « mash/wallpaper/wallpaper.cc ('k') | mash/wm/accelerator_registrar_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698