| 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 "arc_service_manager.cc", | 11 "arc_service_manager.cc", |
| 12 "arc_service_manager.h", | 12 "arc_service_manager.h", |
| 13 "common/arc_message_generator.cc", | 13 "common/arc_message_generator.cc", |
| 14 "common/arc_notification_types.cc", | 14 "common/arc_notification_types.cc", |
| 15 "input/arc_input_bridge.h", |
| 16 "input/arc_input_bridge_impl.cc", |
| 17 "input/arc_input_bridge_impl.h", |
| 15 ] | 18 ] |
| 16 | 19 |
| 17 deps = [ | 20 deps = [ |
| 18 "//base", | 21 "//base", |
| 19 "//base:prefs", | 22 "//base:prefs", |
| 20 "//chromeos", | 23 "//chromeos", |
| 21 "//ipc", | 24 "//ipc", |
| 25 "//ui/aura", |
| 26 "//ui/events", |
| 22 ] | 27 ] |
| 23 } | 28 } |
| 24 | 29 |
| 25 static_library("arc_test_support") { | 30 static_library("arc_test_support") { |
| 26 testonly = true | 31 testonly = true |
| 27 sources = [ | 32 sources = [ |
| 28 "test/fake_arc_bridge_service.cc", | 33 "test/fake_arc_bridge_service.cc", |
| 29 "test/fake_arc_bridge_service.h", | 34 "test/fake_arc_bridge_service.h", |
| 30 ] | 35 ] |
| 31 | 36 |
| 32 deps = [ | 37 deps = [ |
| 33 ":arc", | 38 ":arc", |
| 34 "//base", | 39 "//base", |
| 35 ] | 40 ] |
| 36 } | 41 } |
| 37 | 42 |
| 38 source_set("unit_tests") { | 43 source_set("unit_tests") { |
| 39 testonly = true | 44 testonly = true |
| 40 sources = [ | 45 sources = [ |
| 41 "arc_bridge_service_unittest.cc", | 46 "arc_bridge_service_unittest.cc", |
| 42 ] | 47 ] |
| 43 | 48 |
| 44 deps = [ | 49 deps = [ |
| 45 ":arc", | 50 ":arc", |
| 46 "//base", | 51 "//base", |
| 47 "//chromeos", | 52 "//chromeos", |
| 48 "//ipc", | 53 "//ipc", |
| 49 "//testing/gtest", | 54 "//testing/gtest", |
| 55 "//ui/aura", |
| 56 "//ui/events", |
| 50 ] | 57 ] |
| 51 } | 58 } |
| OLD | NEW |