| 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 static_library("arc") { | 5 static_library("arc") { |
| 6 sources = [ | 6 sources = [ |
| 7 "arc_bridge_service.cc", | 7 "arc_bridge_service.cc", |
| 8 "arc_bridge_service.h", | 8 "arc_bridge_service.h", |
| 9 "arc_bridge_service_impl.cc", | 9 "arc_bridge_service_impl.cc", |
| 10 "arc_bridge_service_impl.h", | 10 "arc_bridge_service_impl.h", |
| 11 "common/arc_message_generator.cc", | 11 "common/arc_message_generator.cc", |
| 12 "common/arc_message_traits.cc", |
| 13 "common/arc_message_traits.h", |
| 12 ] | 14 ] |
| 13 | 15 |
| 14 deps = [ | 16 deps = [ |
| 15 "//base", | 17 "//base", |
| 16 "//chromeos", | 18 "//chromeos", |
| 17 "//ipc", | 19 "//ipc", |
| 18 ] | 20 ] |
| 19 } | 21 } |
| 20 | 22 |
| 21 source_set("unit_tests") { | 23 source_set("unit_tests") { |
| 22 testonly = true | 24 testonly = true |
| 23 sources = [ | 25 sources = [ |
| 24 "arc_bridge_service_unittest.cc", | 26 "arc_bridge_service_unittest.cc", |
| 25 ] | 27 ] |
| 26 | 28 |
| 27 deps = [ | 29 deps = [ |
| 28 ":arc", | 30 ":arc", |
| 29 "//base", | 31 "//base", |
| 30 "//chromeos", | 32 "//chromeos", |
| 31 "//ipc", | 33 "//ipc", |
| 32 "//testing/gtest", | 34 "//testing/gtest", |
| 33 ] | 35 ] |
| 34 } | 36 } |
| OLD | NEW |