| 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", |
| 10 "permit_message.cc", |
| 11 "permit_message.h", |
| 7 "proximity_auth_system.cc", | 12 "proximity_auth_system.cc", |
| 8 "proximity_auth_system.h", | 13 "proximity_auth_system.h", |
| 9 "remote_device.h", | 14 "remote_device.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 sources = [ | 23 sources = [ |
| 24 "connection_unittest.cc", |
| 19 "proximity_auth_system_unittest.cc", | 25 "proximity_auth_system_unittest.cc", |
| 20 ] | 26 ] |
| 21 | 27 |
| 22 deps = [ | 28 deps = [ |
| 23 ":proximity_auth", | 29 ":proximity_auth", |
| 24 "//base/test:test_support", | 30 "//base/test:test_support", |
| 25 "//testing/gtest", | 31 "//testing/gtest", |
| 26 ] | 32 ] |
| 27 } | 33 } |
| OLD | NEW |