| 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 "input/arc_input_bridge.cc", |
| 13 "input/arc_input_bridge.h", |
| 12 ] | 14 ] |
| 13 | 15 |
| 14 deps = [ | 16 deps = [ |
| 15 "//base", | 17 "//base", |
| 16 "//chromeos", | 18 "//chromeos", |
| 17 "//ipc", | 19 "//ipc", |
| 20 "//ui", |
| 18 ] | 21 ] |
| 19 } | 22 } |
| 20 | 23 |
| 21 source_set("unit_tests") { | 24 source_set("unit_tests") { |
| 22 testonly = true | 25 testonly = true |
| 23 sources = [ | 26 sources = [ |
| 24 "arc_bridge_service_unittest.cc", | 27 "arc_bridge_service_unittest.cc", |
| 25 ] | 28 ] |
| 26 | 29 |
| 27 deps = [ | 30 deps = [ |
| 28 ":arc", | 31 ":arc", |
| 29 "//base", | 32 "//base", |
| 30 "//chromeos", | 33 "//chromeos", |
| 31 "//ipc", | 34 "//ipc", |
| 32 "//testing/gtest", | 35 "//testing/gtest", |
| 33 ] | 36 ] |
| 34 } | 37 } |
| OLD | NEW |