OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("proximity_auth") { | 5 static_library("proximity_auth") { |
6 sources = [ | 6 sources = [ |
7 "bluetooth_util.cc", | 7 "bluetooth_util.cc", |
8 "bluetooth_util_chromeos.cc", | 8 "bluetooth_util_chromeos.cc", |
9 "bluetooth_util.h", | 9 "bluetooth_util.h", |
10 "connection.cc", | 10 "connection.cc", |
11 "connection.h", | 11 "connection.h", |
12 "connection_observer.h", | 12 "connection_observer.h", |
13 "proximity_auth_system.cc", | 13 "proximity_auth_system.cc", |
14 "proximity_auth_system.h", | 14 "proximity_auth_system.h", |
15 "remote_device.h", | 15 "remote_device.h", |
16 "wire_message.cc", | 16 "wire_message.cc", |
17 "wire_message.h", | 17 "wire_message.h", |
18 ] | 18 ] |
19 | 19 |
20 deps = [ | 20 deps = [ |
21 "//base", | 21 "//base", |
22 "//device/bluetooth", | 22 "//device/bluetooth", |
| 23 "//net", |
23 ] | 24 ] |
24 } | 25 } |
25 | 26 |
26 source_set("unit_tests") { | 27 source_set("unit_tests") { |
27 testonly = true | 28 testonly = true |
28 sources = [ | 29 sources = [ |
29 "connection_unittest.cc", | 30 "connection_unittest.cc", |
30 "proximity_auth_system_unittest.cc", | 31 "proximity_auth_system_unittest.cc", |
31 "wire_message_unittest.cc", | 32 "wire_message_unittest.cc", |
32 ] | 33 ] |
33 | 34 |
34 deps = [ | 35 deps = [ |
35 ":proximity_auth", | 36 ":proximity_auth", |
36 "//base/test:test_support", | 37 "//base/test:test_support", |
37 "//testing/gmock", | 38 "//testing/gmock", |
38 "//testing/gtest", | 39 "//testing/gtest", |
39 ] | 40 ] |
40 } | 41 } |
OLD | NEW |