Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(287)

Side by Side Diff: components/proximity_auth/BUILD.gn

Issue 505373004: Introduce proximity_auth component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move unit test to component_unittests Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698