OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 static_library("proximity_auth") { |
| 6 sources = [ |
| 7 "proximity_auth_system.cc", |
| 8 "proximity_auth_system.h", |
| 9 "remote_device.h", |
| 10 ] |
| 11 } |
| 12 |
| 13 test("proximity_auth_unittests") { |
| 14 sources = [ |
| 15 "proximity_auth_system_unittest.cc", |
| 16 "run_all_unittests.cc", |
| 17 ] |
| 18 |
| 19 deps = [ |
| 20 ":proximity_auth", |
| 21 "//base/test:test_support", |
| 22 "//testing/gtest", |
| 23 ] |
| 24 } |
OLD | NEW |