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