| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 "standalone/arc_standalone_bridge_runner.cc", | 189 "standalone/arc_standalone_bridge_runner.cc", |
| 190 "standalone/arc_standalone_bridge_runner.h", | 190 "standalone/arc_standalone_bridge_runner.h", |
| 191 ] | 191 ] |
| 192 | 192 |
| 193 deps = [ | 193 deps = [ |
| 194 ":arc", | 194 ":arc", |
| 195 ":arc_standalone_service", | 195 ":arc_standalone_service", |
| 196 "//base", | 196 "//base", |
| 197 "//ipc:ipc", | 197 "//ipc:ipc", |
| 198 "//ipc/mojo:mojo", | 198 "//ipc/mojo:mojo", |
| 199 "//mojo/edk/system", | |
| 200 ] | 199 ] |
| 201 } | 200 } |
| 202 | 201 |
| 203 test("arc_standalone_service_unittests") { | 202 test("arc_standalone_service_unittests") { |
| 204 sources = [ | 203 sources = [ |
| 205 "standalone/service_helper_unittest.cc", | 204 "standalone/service_helper_unittest.cc", |
| 206 ] | 205 ] |
| 207 | 206 |
| 208 deps = [ | 207 deps = [ |
| 209 ":arc_standalone_service", | 208 ":arc_standalone_service", |
| 210 "//base/test:test_support", | 209 "//base/test:test_support", |
| 211 "//testing/gtest", | 210 "//testing/gtest", |
| 212 ] | 211 ] |
| 213 } | 212 } |
| 214 | 213 |
| 215 executable("arc_standalone_bridge") { | 214 executable("arc_standalone_bridge") { |
| 216 sources = [ | 215 sources = [ |
| 217 "standalone/arc_standalone_bridge_main.cc", | 216 "standalone/arc_standalone_bridge_main.cc", |
| 218 ] | 217 ] |
| 219 | 218 |
| 220 deps = [ | 219 deps = [ |
| 221 ":arc_standalone", | 220 ":arc_standalone", |
| 222 ":arc_standalone_service", | 221 ":arc_standalone_service", |
| 223 "//base", | 222 "//base", |
| 224 "//ipc:ipc", | 223 "//ipc:ipc", |
| 225 "//ipc/mojo:mojo", | 224 "//ipc/mojo:mojo", |
| 226 "//mojo/edk/system", | 225 "//mojo/edk/system", |
| 227 ] | 226 ] |
| 228 } | 227 } |
| OLD | NEW |