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