| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 ":arc_bindings", | 93 ":arc_bindings", |
| 94 ] | 94 ] |
| 95 } | 95 } |
| 96 | 96 |
| 97 static_library("arc_base") { | 97 static_library("arc_base") { |
| 98 sources = [ | 98 sources = [ |
| 99 "arc_bridge_service.cc", | 99 "arc_bridge_service.cc", |
| 100 "arc_bridge_service.h", | 100 "arc_bridge_service.h", |
| 101 "arc_service.cc", | 101 "arc_service.cc", |
| 102 "arc_service.h", | 102 "arc_service.h", |
| 103 "instance_holder.h", |
| 103 ] | 104 ] |
| 104 | 105 |
| 105 deps = [ | 106 deps = [ |
| 106 "//base", | 107 "//base", |
| 107 "//chromeos", | 108 "//chromeos", |
| 108 ] | 109 ] |
| 109 | 110 |
| 110 public_deps = [ | 111 public_deps = [ |
| 111 ":arc_bindings", | 112 ":arc_bindings", |
| 112 ] | 113 ] |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 ] | 259 ] |
| 259 | 260 |
| 260 deps = [ | 261 deps = [ |
| 261 ":arc_standalone", | 262 ":arc_standalone", |
| 262 ":arc_standalone_service", | 263 ":arc_standalone_service", |
| 263 "//base", | 264 "//base", |
| 264 "//ipc:ipc", | 265 "//ipc:ipc", |
| 265 "//mojo/edk/system", | 266 "//mojo/edk/system", |
| 266 ] | 267 ] |
| 267 } | 268 } |
| OLD | NEW |