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 source_set("auto_login_parser") { | 5 static_library("proximity_auth") { |
6 sources = [ | 6 sources = [ |
7 "auto_login_parser.cc", | 7 "proximity_auth_system.cc", |
8 "auto_login_parser.h", | 8 "proximity_auth_system.h", |
9 ] | 9 "remote_device.h", |
10 | |
11 deps = [ | |
12 "//base", | |
13 "//net", | |
14 ] | 10 ] |
blundell
2014/08/29 10:15:46
and here.
Tim Song
2014/08/29 18:20:38
Done.
| |
15 } | 11 } |
16 | 12 |
17 source_set("unit_tests") { | 13 source_set("unit_tests") { |
18 sources = [ | 14 sources = [ |
19 "auto_login_parser_unittest.cc", | 15 "proximity_auth_system_unittest.cc", |
20 ] | 16 ] |
21 | 17 |
22 deps = [ | 18 deps = [ |
23 ":auto_login_parser", | 19 ":proximity_auth", |
20 "//base/test:test_support", | |
24 "//testing/gtest", | 21 "//testing/gtest", |
25 ] | 22 ] |
26 } | 23 } |
OLD | NEW |