OLD | NEW |
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 "window_tree_binding.h", | 69 "window_tree_binding.h", |
70 "window_tree_factory.cc", | 70 "window_tree_factory.cc", |
71 "window_tree_factory.h", | 71 "window_tree_factory.h", |
72 ] | 72 ] |
73 | 73 |
74 deps = [ | 74 deps = [ |
75 "//base", | 75 "//base", |
76 "//cc", | 76 "//cc", |
77 "//cc/surfaces", | 77 "//cc/surfaces", |
78 "//cc/surfaces:surface_id", | 78 "//cc/surfaces:surface_id", |
79 "//components/mus/common", | 79 "//components/mus/common:mus_common", |
80 "//components/mus/gles2", | 80 "//components/mus/gles2", |
81 "//components/mus/public/interfaces", | 81 "//components/mus/public/interfaces", |
82 "//components/mus/surfaces", | 82 "//components/mus/surfaces", |
83 "//mojo/common:common_base", | 83 "//mojo/common:common_base", |
84 "//mojo/converters/geometry", | 84 "//mojo/converters/geometry", |
85 "//mojo/converters/ime", | 85 "//mojo/converters/ime", |
86 "//mojo/converters/input_events", | 86 "//mojo/converters/input_events", |
87 "//mojo/converters/surfaces", | 87 "//mojo/converters/surfaces", |
88 "//mojo/public/cpp/bindings:callback", | 88 "//mojo/public/cpp/bindings:callback", |
89 "//mojo/services/tracing/public/cpp", | 89 "//mojo/services/tracing/public/cpp", |
(...skipping 18 matching lines...) Expand all Loading... |
108 source_set("test_support") { | 108 source_set("test_support") { |
109 testonly = true | 109 testonly = true |
110 | 110 |
111 sources = [ | 111 sources = [ |
112 "test_change_tracker.cc", | 112 "test_change_tracker.cc", |
113 "test_change_tracker.h", | 113 "test_change_tracker.h", |
114 ] | 114 ] |
115 | 115 |
116 deps = [ | 116 deps = [ |
117 "//base", | 117 "//base", |
118 "//components/mus/common", | 118 "//components/mus/common:mus_common", |
119 "//components/mus/public/cpp", | 119 "//components/mus/public/cpp", |
120 "//components/mus/public/interfaces", | 120 "//components/mus/public/interfaces", |
121 "//mojo/common", | 121 "//mojo/common", |
122 "//mojo/public/cpp/bindings:bindings", | 122 "//mojo/public/cpp/bindings:bindings", |
123 "//ui/mojo/geometry:interfaces", | 123 "//ui/mojo/geometry:interfaces", |
124 ] | 124 ] |
125 } | 125 } |
126 | 126 |
127 group("tests") { | 127 group("tests") { |
128 testonly = true | 128 testonly = true |
(...skipping 24 matching lines...) Expand all Loading... |
153 "window_finder_unittest.cc", | 153 "window_finder_unittest.cc", |
154 "window_tree_unittest.cc", | 154 "window_tree_unittest.cc", |
155 ] | 155 ] |
156 | 156 |
157 deps = [ | 157 deps = [ |
158 ":lib", | 158 ":lib", |
159 ":test_support", | 159 ":test_support", |
160 "//base", | 160 "//base", |
161 "//base/test:test_config", | 161 "//base/test:test_config", |
162 "//cc:cc", | 162 "//cc:cc", |
163 "//components/mus/common", | 163 "//components/mus/common:mus_common", |
164 "//components/mus/public/cpp", | 164 "//components/mus/public/cpp", |
165 "//components/mus/public/interfaces", | 165 "//components/mus/public/interfaces", |
166 "//components/mus/surfaces", | 166 "//components/mus/surfaces", |
167 "//mojo/converters/geometry", | 167 "//mojo/converters/geometry", |
168 "//mojo/converters/input_events", | 168 "//mojo/converters/input_events", |
169 "//mojo/converters/transform", | 169 "//mojo/converters/transform", |
170 "//mojo/edk/test:run_all_unittests", | 170 "//mojo/edk/test:run_all_unittests", |
171 "//mojo/environment:chromium", | 171 "//mojo/environment:chromium", |
172 "//mojo/gles2", | 172 "//mojo/gles2", |
173 "//mojo/platform_handle:for_shared_library", | 173 "//mojo/platform_handle:for_shared_library", |
(...skipping 19 matching lines...) Expand all Loading... |
193 sources = [ | 193 sources = [ |
194 "window_manager_client_apptest.cc", | 194 "window_manager_client_apptest.cc", |
195 "window_tree_apptest.cc", | 195 "window_tree_apptest.cc", |
196 ] | 196 ] |
197 | 197 |
198 deps = [ | 198 deps = [ |
199 ":manifest", | 199 ":manifest", |
200 ":test_support", | 200 ":test_support", |
201 "//base", | 201 "//base", |
202 "//base/test:test_config", | 202 "//base/test:test_config", |
203 "//components/mus/common", | 203 "//components/mus/common:mus_common", |
204 "//components/mus/public/cpp", | 204 "//components/mus/public/cpp", |
205 "//components/mus/public/cpp/tests:test_support", | 205 "//components/mus/public/cpp/tests:test_support", |
206 "//components/mus/public/interfaces", | 206 "//components/mus/public/interfaces", |
207 "//mojo/converters/geometry", | 207 "//mojo/converters/geometry", |
208 "//mojo/shell/public/cpp:sources", | 208 "//mojo/shell/public/cpp:sources", |
209 "//mojo/shell/public/cpp:test_support", | 209 "//mojo/shell/public/cpp:test_support", |
210 "//ui/gfx:test_support", | 210 "//ui/gfx:test_support", |
211 "//ui/gfx/geometry", | 211 "//ui/gfx/geometry", |
212 "//ui/mojo/geometry:interfaces", | 212 "//ui/mojo/geometry:interfaces", |
213 "//ui/mojo/geometry:util", | 213 "//ui/mojo/geometry:util", |
214 ] | 214 ] |
215 | 215 |
216 data_deps = [ | 216 data_deps = [ |
217 ":lib", | 217 ":lib", |
218 ] | 218 ] |
219 | 219 |
220 if (use_x11) { | 220 if (use_x11) { |
221 deps += [ "//tools/xdisplaycheck" ] | 221 deps += [ "//tools/xdisplaycheck" ] |
222 } | 222 } |
223 } | 223 } |
224 | 224 |
225 mojo_application_manifest("manifest") { | 225 mojo_application_manifest("manifest") { |
226 application_name = "mus_apptests" | 226 application_name = "mus_apptests" |
227 source = "apptest_manifest.json" | 227 source = "apptest_manifest.json" |
228 } | 228 } |
OLD | NEW |