OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 static_library("arc") { | 8 static_library("arc") { |
9 sources = [ | 9 sources = [ |
10 "arc_bridge_bootstrap.cc", | 10 "arc_bridge_bootstrap.cc", |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 "//mojo/public/cpp/system:system", | 211 "//mojo/public/cpp/system:system", |
212 "//testing/gtest", | 212 "//testing/gtest", |
213 "//ui/aura", | 213 "//ui/aura", |
214 "//ui/base:test_support", | 214 "//ui/base:test_support", |
215 "//ui/base/ime", | 215 "//ui/base/ime", |
216 "//ui/events", | 216 "//ui/events", |
217 "//ui/events:dom_keycode_converter", | 217 "//ui/events:dom_keycode_converter", |
218 "//url:url", | 218 "//url:url", |
219 ] | 219 ] |
220 } | 220 } |
221 | |
222 static_library("arc_standalone_service") { | |
223 sources = [ | |
224 "standalone/service_helper.cc", | |
225 "standalone/service_helper.h", | |
226 ] | |
227 | |
228 deps = [ | |
229 "//base", | |
230 ] | |
231 } | |
232 | |
233 static_library("arc_standalone") { | |
234 sources = [ | |
235 "standalone/arc_standalone_bridge_runner.cc", | |
236 "standalone/arc_standalone_bridge_runner.h", | |
237 ] | |
238 | |
239 deps = [ | |
240 ":arc", | |
241 ":arc_standalone_service", | |
242 "//base", | |
243 "//ipc:ipc", | |
244 ] | |
245 } | |
246 | |
247 test("arc_standalone_service_unittests") { | |
248 sources = [ | |
249 "standalone/service_helper_unittest.cc", | |
250 ] | |
251 | |
252 deps = [ | |
253 ":arc_standalone_service", | |
254 "//base/test:test_support", | |
255 "//testing/gtest", | |
256 ] | |
257 } | |
258 | |
259 executable("arc_standalone_bridge") { | |
260 sources = [ | |
261 "standalone/arc_standalone_bridge_main.cc", | |
262 ] | |
263 | |
264 deps = [ | |
265 ":arc_standalone", | |
266 ":arc_standalone_service", | |
267 "//base", | |
268 "//ipc:ipc", | |
269 "//mojo/edk/system", | |
270 ] | |
271 } | |
OLD | NEW |