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 | 9 |
9 source_set("lib") { | 10 source_set("lib") { |
10 sources = [ | 11 sources = [ |
11 "access_policy.h", | 12 "access_policy.h", |
12 "access_policy_delegate.h", | 13 "access_policy_delegate.h", |
13 "client_connection.cc", | 14 "client_connection.cc", |
14 "client_connection.h", | 15 "client_connection.h", |
15 "connection_manager.cc", | 16 "connection_manager.cc", |
16 "connection_manager.h", | 17 "connection_manager.h", |
17 "connection_manager_delegate.cc", | 18 "connection_manager_delegate.cc", |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 mojo_native_application("apptests") { | 177 mojo_native_application("apptests") { |
177 output_name = "mus_apptests" | 178 output_name = "mus_apptests" |
178 testonly = true | 179 testonly = true |
179 | 180 |
180 sources = [ | 181 sources = [ |
181 "window_manager_client_apptest.cc", | 182 "window_manager_client_apptest.cc", |
182 "window_tree_apptest.cc", | 183 "window_tree_apptest.cc", |
183 ] | 184 ] |
184 | 185 |
185 deps = [ | 186 deps = [ |
| 187 ":manifest", |
186 ":test_support", | 188 ":test_support", |
187 "//base", | 189 "//base", |
188 "//base/test:test_config", | 190 "//base/test:test_config", |
189 "//components/mus/common", | 191 "//components/mus/common", |
190 "//components/mus/public/cpp", | 192 "//components/mus/public/cpp", |
191 "//components/mus/public/cpp/tests:test_support", | 193 "//components/mus/public/cpp/tests:test_support", |
192 "//components/mus/public/interfaces", | 194 "//components/mus/public/interfaces", |
193 "//mojo/converters/geometry", | 195 "//mojo/converters/geometry", |
194 "//mojo/shell/public/cpp:sources", | 196 "//mojo/shell/public/cpp:sources", |
195 "//mojo/shell/public/cpp:test_support", | 197 "//mojo/shell/public/cpp:test_support", |
196 "//ui/gfx:test_support", | 198 "//ui/gfx:test_support", |
197 "//ui/gfx/geometry", | 199 "//ui/gfx/geometry", |
198 "//ui/mojo/geometry:interfaces", | 200 "//ui/mojo/geometry:interfaces", |
199 "//ui/mojo/geometry:util", | 201 "//ui/mojo/geometry:util", |
200 ] | 202 ] |
201 | 203 |
202 data_deps = [ | 204 data_deps = [ |
203 ":lib", | 205 ":lib", |
204 ] | 206 ] |
205 | 207 |
206 if (use_x11) { | 208 if (use_x11) { |
207 deps += [ "//tools/xdisplaycheck" ] | 209 deps += [ "//tools/xdisplaycheck" ] |
208 } | 210 } |
209 } | 211 } |
| 212 |
| 213 mojo_application_manifest("manifest") { |
| 214 application_name = "mus_apptests" |
| 215 source = "apptest_manifest.json" |
| 216 } |
OLD | NEW |