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", | |
sky
2015/12/05 00:16:49
I'm surprised this compiles. //ui has no BUILD.gn,
denniskempin
2015/12/05 01:17:56
I updated it to //ui/aura and events. Same in DEPS
| |
22 ] | 26 ] |
23 } | 27 } |
24 | 28 |
25 static_library("arc_test_support") { | 29 static_library("arc_test_support") { |
26 testonly = true | 30 testonly = true |
27 sources = [ | 31 sources = [ |
28 "test/fake_arc_bridge_service.cc", | 32 "test/fake_arc_bridge_service.cc", |
29 "test/fake_arc_bridge_service.h", | 33 "test/fake_arc_bridge_service.h", |
30 ] | 34 ] |
31 | 35 |
32 deps = [ | 36 deps = [ |
33 ":arc", | 37 ":arc", |
34 "//base", | 38 "//base", |
35 ] | 39 ] |
36 } | 40 } |
37 | 41 |
38 source_set("unit_tests") { | 42 source_set("unit_tests") { |
39 testonly = true | 43 testonly = true |
40 sources = [ | 44 sources = [ |
41 "arc_bridge_service_unittest.cc", | 45 "arc_bridge_service_unittest.cc", |
42 ] | 46 ] |
43 | 47 |
44 deps = [ | 48 deps = [ |
45 ":arc", | 49 ":arc", |
46 "//base", | 50 "//base", |
47 "//chromeos", | 51 "//chromeos", |
48 "//ipc", | 52 "//ipc", |
49 "//testing/gtest", | 53 "//testing/gtest", |
54 "//ui", | |
50 ] | 55 ] |
51 } | 56 } |
OLD | NEW |