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