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 "connection.cc", |
| 8 "connection.h", |
| 9 "connection_observer.h", |
7 "proximity_auth_system.cc", | 10 "proximity_auth_system.cc", |
8 "proximity_auth_system.h", | 11 "proximity_auth_system.h", |
9 "remote_device.h", | 12 "remote_device.h", |
| 13 "wire_message.cc", |
| 14 "wire_message.h", |
10 ] | 15 ] |
11 | 16 |
12 deps = [ | 17 deps = [ |
13 "//base", | 18 "//base", |
14 ] | 19 ] |
15 } | 20 } |
16 | 21 |
17 source_set("unit_tests") { | 22 source_set("unit_tests") { |
18 testonly = true | 23 testonly = true |
19 sources = [ | 24 sources = [ |
| 25 "connection_unittest.cc", |
20 "proximity_auth_system_unittest.cc", | 26 "proximity_auth_system_unittest.cc", |
21 ] | 27 ] |
22 | 28 |
23 deps = [ | 29 deps = [ |
24 ":proximity_auth", | 30 ":proximity_auth", |
25 "//base/test:test_support", | 31 "//base/test:test_support", |
| 32 "//testing/gmock", |
26 "//testing/gtest", | 33 "//testing/gtest", |
27 ] | 34 ] |
28 } | 35 } |
OLD | NEW |