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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 "//components/mus/common", | 151 "//components/mus/common", |
152 "//components/mus/public/cpp", | 152 "//components/mus/public/cpp", |
153 "//components/mus/public/interfaces", | 153 "//components/mus/public/interfaces", |
154 "//components/mus/surfaces", | 154 "//components/mus/surfaces", |
155 "//mojo/converters/geometry", | 155 "//mojo/converters/geometry", |
156 "//mojo/converters/input_events", | 156 "//mojo/converters/input_events", |
157 "//mojo/converters/transform", | 157 "//mojo/converters/transform", |
158 "//mojo/edk/test:run_all_unittests", | 158 "//mojo/edk/test:run_all_unittests", |
159 "//mojo/environment:chromium", | 159 "//mojo/environment:chromium", |
160 "//mojo/gles2", | 160 "//mojo/gles2", |
161 "//mojo/platform_handle", | 161 "//mojo/platform_handle:for_shared_library", |
162 "//mojo/public/cpp/bindings:bindings", | 162 "//mojo/public/cpp/bindings:bindings", |
163 "//mojo/shell/public/interfaces", | 163 "//mojo/shell/public/interfaces", |
164 "//testing/gtest", | 164 "//testing/gtest", |
165 "//ui/events", | 165 "//ui/events", |
166 "//ui/gfx", | 166 "//ui/gfx", |
167 "//ui/gfx:test_support", | 167 "//ui/gfx:test_support", |
168 "//ui/gfx/geometry", | 168 "//ui/gfx/geometry", |
169 "//ui/mojo/geometry:interfaces", | 169 "//ui/mojo/geometry:interfaces", |
170 ] | 170 ] |
171 | 171 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 | 207 |
208 if (use_x11) { | 208 if (use_x11) { |
209 deps += [ "//tools/xdisplaycheck" ] | 209 deps += [ "//tools/xdisplaycheck" ] |
210 } | 210 } |
211 } | 211 } |
212 | 212 |
213 mojo_application_manifest("manifest") { | 213 mojo_application_manifest("manifest") { |
214 application_name = "mus_apptests" | 214 application_name = "mus_apptests" |
215 source = "apptest_manifest.json" | 215 source = "apptest_manifest.json" |
216 } | 216 } |
OLD | NEW |