| 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", |
| 11 "arc_bridge_bootstrap.h", | 11 "arc_bridge_bootstrap.h", |
| 12 "arc_bridge_host_impl.cc", | 12 "arc_bridge_host_impl.cc", |
| 13 "arc_bridge_host_impl.h", | 13 "arc_bridge_host_impl.h", |
| 14 "arc_bridge_service_impl.cc", | 14 "arc_bridge_service_impl.cc", |
| 15 "arc_bridge_service_impl.h", | 15 "arc_bridge_service_impl.h", |
| 16 "arc_features.cc", |
| 17 "arc_features.h", |
| 16 "arc_service_manager.cc", | 18 "arc_service_manager.cc", |
| 17 "arc_service_manager.h", | 19 "arc_service_manager.h", |
| 18 "audio/arc_audio_bridge.cc", | 20 "audio/arc_audio_bridge.cc", |
| 19 "audio/arc_audio_bridge.h", | 21 "audio/arc_audio_bridge.h", |
| 20 "bluetooth/arc_bluetooth_bridge.cc", | 22 "bluetooth/arc_bluetooth_bridge.cc", |
| 21 "bluetooth/arc_bluetooth_bridge.h", | 23 "bluetooth/arc_bluetooth_bridge.h", |
| 22 "bluetooth/bluetooth_struct_traits.cc", | 24 "bluetooth/bluetooth_struct_traits.cc", |
| 23 "bluetooth/bluetooth_struct_traits.h", | 25 "bluetooth/bluetooth_struct_traits.h", |
| 24 "bluetooth/bluetooth_type_converters.cc", | 26 "bluetooth/bluetooth_type_converters.cc", |
| 25 "bluetooth/bluetooth_type_converters.h", | 27 "bluetooth/bluetooth_type_converters.h", |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 ] | 279 ] |
| 278 | 280 |
| 279 deps = [ | 281 deps = [ |
| 280 ":arc_standalone", | 282 ":arc_standalone", |
| 281 ":arc_standalone_service", | 283 ":arc_standalone_service", |
| 282 "//base", | 284 "//base", |
| 283 "//ipc:ipc", | 285 "//ipc:ipc", |
| 284 "//mojo/edk/system", | 286 "//mojo/edk/system", |
| 285 ] | 287 ] |
| 286 } | 288 } |
| OLD | NEW |