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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 deps = [ | 92 deps = [ |
93 "//base", | 93 "//base", |
94 "//cc", | 94 "//cc", |
95 "//cc/surfaces", | 95 "//cc/surfaces", |
96 "//cc/surfaces:surface_id", | 96 "//cc/surfaces:surface_id", |
97 "//components/mus/common:mus_common", | 97 "//components/mus/common:mus_common", |
98 "//components/mus/gles2", | 98 "//components/mus/gles2", |
99 "//components/mus/public/interfaces", | 99 "//components/mus/public/interfaces", |
100 "//components/mus/surfaces", | 100 "//components/mus/surfaces", |
101 "//mojo/common:common_base", | 101 "//mojo/common:common_base", |
102 "//mojo/converters/geometry", | |
103 "//mojo/converters/ime", | 102 "//mojo/converters/ime", |
104 "//mojo/converters/input_events", | 103 "//mojo/converters/input_events", |
105 "//mojo/converters/surfaces", | 104 "//mojo/converters/surfaces", |
106 "//mojo/public/cpp/bindings:callback", | 105 "//mojo/public/cpp/bindings:callback", |
107 "//services/shell/public/cpp", | 106 "//services/shell/public/cpp", |
108 "//services/shell/public/interfaces", | 107 "//services/shell/public/interfaces", |
109 "//services/tracing/public/cpp", | 108 "//services/tracing/public/cpp", |
110 "//ui/base", | 109 "//ui/base", |
111 "//ui/display", | 110 "//ui/display", |
112 "//ui/events", | 111 "//ui/events", |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 ":test_support", | 203 ":test_support", |
205 "//base", | 204 "//base", |
206 "//base/test:test_config", | 205 "//base/test:test_config", |
207 "//base/test:test_support", | 206 "//base/test:test_support", |
208 "//cc:cc", | 207 "//cc:cc", |
209 "//components/mus/common:mus_common", | 208 "//components/mus/common:mus_common", |
210 "//components/mus/public/cpp", | 209 "//components/mus/public/cpp", |
211 "//components/mus/public/cpp/tests:test_support", | 210 "//components/mus/public/cpp/tests:test_support", |
212 "//components/mus/public/interfaces", | 211 "//components/mus/public/interfaces", |
213 "//components/mus/surfaces", | 212 "//components/mus/surfaces", |
214 "//mojo/converters/geometry", | |
215 "//mojo/converters/input_events", | 213 "//mojo/converters/input_events", |
216 "//mojo/converters/transform", | 214 "//mojo/converters/transform", |
217 "//mojo/public/cpp/bindings:bindings", | 215 "//mojo/public/cpp/bindings:bindings", |
218 "//services/shell/public/cpp:shell_test_support", | 216 "//services/shell/public/cpp:shell_test_support", |
219 "//services/shell/public/cpp:sources", | 217 "//services/shell/public/cpp:sources", |
220 "//services/shell/public/cpp/test:run_all_shelltests", | 218 "//services/shell/public/cpp/test:run_all_shelltests", |
221 "//services/shell/public/interfaces", | 219 "//services/shell/public/interfaces", |
222 "//testing/gtest", | 220 "//testing/gtest", |
223 "//third_party/mesa:osmesa", | 221 "//third_party/mesa:osmesa", |
224 "//ui/events", | 222 "//ui/events", |
225 "//ui/gfx", | 223 "//ui/gfx", |
226 "//ui/gfx:test_support", | 224 "//ui/gfx:test_support", |
227 "//ui/gfx/geometry", | 225 "//ui/gfx/geometry", |
228 "//ui/gl", | 226 "//ui/gl", |
229 "//ui/mojo/geometry:interfaces", | 227 "//ui/mojo/geometry:interfaces", |
230 "//ui/mojo/geometry:util", | |
231 ] | 228 ] |
232 | 229 |
233 if (use_x11) { | 230 if (use_x11) { |
234 deps += [ "//tools/xdisplaycheck" ] | 231 deps += [ "//tools/xdisplaycheck" ] |
235 } | 232 } |
236 | 233 |
237 data_deps = [ | 234 data_deps = [ |
238 ":mus_ws_unittests_app_manifest", | 235 ":mus_ws_unittests_app_manifest", |
239 ] | 236 ] |
240 } | 237 } |
241 | 238 |
242 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 239 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
243 application_name = "mus_ws_unittests_app" | 240 application_name = "mus_ws_unittests_app" |
244 source = "mus_ws_unittests_app_manifest.json" | 241 source = "mus_ws_unittests_app_manifest.json" |
245 } | 242 } |
OLD | NEW |