Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(555)

Side by Side Diff: components/arc/BUILD.gn

Issue 2384173004: arc: Remove components/arc/standalone (Closed)
Patch Set: Rebased to ToT Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | components/arc/standalone/arc_standalone_bridge_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | components/arc/standalone/arc_standalone_bridge_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698