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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 "window_tree_host_factory.cc", | 88 "window_tree_host_factory.cc", |
89 "window_tree_host_factory.h", | 89 "window_tree_host_factory.h", |
90 ] | 90 ] |
91 | 91 |
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", | |
99 "//components/mus/public/interfaces", | 98 "//components/mus/public/interfaces", |
100 "//components/mus/surfaces", | 99 "//components/mus/surfaces", |
101 "//mojo/common:common_base", | 100 "//mojo/common:common_base", |
102 "//mojo/converters/geometry", | 101 "//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", |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | 213 "//mojo/converters/geometry", |
215 "//mojo/converters/input_events", | 214 "//mojo/converters/input_events", |
216 "//mojo/converters/transform", | 215 "//mojo/converters/transform", |
217 "//mojo/gles2", | |
218 "//mojo/public/cpp/bindings:bindings", | 216 "//mojo/public/cpp/bindings:bindings", |
219 "//services/shell/public/cpp:shell_test_support", | 217 "//services/shell/public/cpp:shell_test_support", |
220 "//services/shell/public/cpp:sources", | 218 "//services/shell/public/cpp:sources", |
221 "//services/shell/public/cpp/test:run_all_shelltests", | 219 "//services/shell/public/cpp/test:run_all_shelltests", |
222 "//services/shell/public/interfaces", | 220 "//services/shell/public/interfaces", |
223 "//testing/gtest", | 221 "//testing/gtest", |
224 "//third_party/mesa:osmesa", | 222 "//third_party/mesa:osmesa", |
225 "//ui/events", | 223 "//ui/events", |
226 "//ui/gfx", | 224 "//ui/gfx", |
227 "//ui/gfx:test_support", | 225 "//ui/gfx:test_support", |
228 "//ui/gfx/geometry", | 226 "//ui/gfx/geometry", |
229 "//ui/gl", | 227 "//ui/gl", |
230 "//ui/mojo/geometry:interfaces", | 228 "//ui/mojo/geometry:interfaces", |
231 "//ui/mojo/geometry:util", | 229 "//ui/mojo/geometry:util", |
232 ] | 230 ] |
233 | 231 |
234 if (use_x11) { | 232 if (use_x11) { |
235 deps += [ "//tools/xdisplaycheck" ] | 233 deps += [ "//tools/xdisplaycheck" ] |
236 } | 234 } |
237 | 235 |
238 data_deps = [ | 236 data_deps = [ |
239 ":mus_ws_unittests_app_manifest", | 237 ":mus_ws_unittests_app_manifest", |
240 ] | 238 ] |
241 } | 239 } |
242 | 240 |
243 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 241 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
244 application_name = "mus_ws_unittests_app" | 242 application_name = "mus_ws_unittests_app" |
245 source = "mus_ws_unittests_app_manifest.json" | 243 source = "mus_ws_unittests_app_manifest.json" |
246 } | 244 } |
OLD | NEW |