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

Side by Side Diff: components/mus/ws/BUILD.gn

Issue 1765693002: Revert of IPC::ParamTraits for ui::Event (towards ui::Events over mojo IPC) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « components/mus/public/cpp/tests/BUILD.gn ('k') | mash/wm/BUILD.gn » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//mojo/public/mojo_application.gni") 7 import("//mojo/public/mojo_application.gni")
8 import("//mojo/public/mojo_application_manifest.gni") 8 import("//mojo/public/mojo_application_manifest.gni")
9 9
10 source_set("lib") { 10 source_set("lib") {
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 "window_tree_host_impl.h", 64 "window_tree_host_impl.h",
65 "window_tree_impl.cc", 65 "window_tree_impl.cc",
66 "window_tree_impl.h", 66 "window_tree_impl.h",
67 ] 67 ]
68 68
69 deps = [ 69 deps = [
70 "//base", 70 "//base",
71 "//cc", 71 "//cc",
72 "//cc/surfaces", 72 "//cc/surfaces",
73 "//cc/surfaces:surface_id", 73 "//cc/surfaces:surface_id",
74 "//components/mus/common:mus_common", 74 "//components/mus/common",
75 "//components/mus/gles2", 75 "//components/mus/gles2",
76 "//components/mus/public/interfaces", 76 "//components/mus/public/interfaces",
77 "//components/mus/surfaces", 77 "//components/mus/surfaces",
78 "//mojo/common:common_base", 78 "//mojo/common:common_base",
79 "//mojo/converters/geometry", 79 "//mojo/converters/geometry",
80 "//mojo/converters/ime", 80 "//mojo/converters/ime",
81 "//mojo/converters/input_events", 81 "//mojo/converters/input_events",
82 "//mojo/converters/surfaces", 82 "//mojo/converters/surfaces",
83 "//mojo/public/cpp/bindings:callback", 83 "//mojo/public/cpp/bindings:callback",
84 "//mojo/services/tracing/public/cpp", 84 "//mojo/services/tracing/public/cpp",
(...skipping 17 matching lines...) Expand all
102 source_set("test_support") { 102 source_set("test_support") {
103 testonly = true 103 testonly = true
104 104
105 sources = [ 105 sources = [
106 "test_change_tracker.cc", 106 "test_change_tracker.cc",
107 "test_change_tracker.h", 107 "test_change_tracker.h",
108 ] 108 ]
109 109
110 deps = [ 110 deps = [
111 "//base", 111 "//base",
112 "//components/mus/common:mus_common", 112 "//components/mus/common",
113 "//components/mus/public/cpp", 113 "//components/mus/public/cpp",
114 "//components/mus/public/interfaces", 114 "//components/mus/public/interfaces",
115 "//mojo/common", 115 "//mojo/common",
116 "//mojo/public/cpp/bindings:bindings", 116 "//mojo/public/cpp/bindings:bindings",
117 "//ui/mojo/geometry:interfaces", 117 "//ui/mojo/geometry:interfaces",
118 ] 118 ]
119 } 119 }
120 120
121 group("tests") { 121 group("tests") {
122 testonly = true 122 testonly = true
(...skipping 21 matching lines...) Expand all
144 "window_finder_unittest.cc", 144 "window_finder_unittest.cc",
145 "window_tree_unittest.cc", 145 "window_tree_unittest.cc",
146 ] 146 ]
147 147
148 deps = [ 148 deps = [
149 ":lib", 149 ":lib",
150 ":test_support", 150 ":test_support",
151 "//base", 151 "//base",
152 "//base/test:test_config", 152 "//base/test:test_config",
153 "//cc:cc", 153 "//cc:cc",
154 "//components/mus/common:mus_common", 154 "//components/mus/common",
155 "//components/mus/public/cpp", 155 "//components/mus/public/cpp",
156 "//components/mus/public/interfaces", 156 "//components/mus/public/interfaces",
157 "//components/mus/surfaces", 157 "//components/mus/surfaces",
158 "//mojo/converters/geometry", 158 "//mojo/converters/geometry",
159 "//mojo/converters/input_events", 159 "//mojo/converters/input_events",
160 "//mojo/converters/transform", 160 "//mojo/converters/transform",
161 "//mojo/edk/test:run_all_unittests", 161 "//mojo/edk/test:run_all_unittests",
162 "//mojo/environment:chromium", 162 "//mojo/environment:chromium",
163 "//mojo/gles2", 163 "//mojo/gles2",
164 "//mojo/platform_handle:for_shared_library", 164 "//mojo/platform_handle:for_shared_library",
(...skipping 19 matching lines...) Expand all
184 sources = [ 184 sources = [
185 "window_manager_client_apptest.cc", 185 "window_manager_client_apptest.cc",
186 "window_tree_apptest.cc", 186 "window_tree_apptest.cc",
187 ] 187 ]
188 188
189 deps = [ 189 deps = [
190 ":manifest", 190 ":manifest",
191 ":test_support", 191 ":test_support",
192 "//base", 192 "//base",
193 "//base/test:test_config", 193 "//base/test:test_config",
194 "//components/mus/common:mus_common", 194 "//components/mus/common",
195 "//components/mus/public/cpp", 195 "//components/mus/public/cpp",
196 "//components/mus/public/cpp/tests:test_support", 196 "//components/mus/public/cpp/tests:test_support",
197 "//components/mus/public/interfaces", 197 "//components/mus/public/interfaces",
198 "//mojo/converters/geometry", 198 "//mojo/converters/geometry",
199 "//mojo/shell/public/cpp:sources", 199 "//mojo/shell/public/cpp:sources",
200 "//mojo/shell/public/cpp:test_support", 200 "//mojo/shell/public/cpp:test_support",
201 "//ui/gfx:test_support", 201 "//ui/gfx:test_support",
202 "//ui/gfx/geometry", 202 "//ui/gfx/geometry",
203 "//ui/mojo/geometry:interfaces", 203 "//ui/mojo/geometry:interfaces",
204 "//ui/mojo/geometry:util", 204 "//ui/mojo/geometry:util",
205 ] 205 ]
206 206
207 data_deps = [ 207 data_deps = [
208 ":lib", 208 ":lib",
209 ] 209 ]
210 210
211 if (use_x11) { 211 if (use_x11) {
212 deps += [ "//tools/xdisplaycheck" ] 212 deps += [ "//tools/xdisplaycheck" ]
213 } 213 }
214 } 214 }
215 215
216 mojo_application_manifest("manifest") { 216 mojo_application_manifest("manifest") {
217 application_name = "mus_apptests" 217 application_name = "mus_apptests"
218 source = "apptest_manifest.json" 218 source = "apptest_manifest.json"
219 } 219 }
OLDNEW
« no previous file with comments | « components/mus/public/cpp/tests/BUILD.gn ('k') | mash/wm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698