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

Unified 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, 4 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 side-by-side diff with in-line comments
Download patch
Index: components/proximity_auth/BUILD.gn
diff --git a/components/auto_login_parser/BUILD.gn b/components/proximity_auth/BUILD.gn
similarity index 55%
copy from components/auto_login_parser/BUILD.gn
copy to components/proximity_auth/BUILD.gn
index af92f0fa5483d43264361ea87dbaf59e2f9ac945..583d22a4f31e21568b2f9636db9f5deab76c960d 100644
--- a/components/auto_login_parser/BUILD.gn
+++ b/components/proximity_auth/BUILD.gn
@@ -2,25 +2,22 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("auto_login_parser") {
+static_library("proximity_auth") {
sources = [
- "auto_login_parser.cc",
- "auto_login_parser.h",
- ]
-
- deps = [
- "//base",
- "//net",
+ "proximity_auth_system.cc",
+ "proximity_auth_system.h",
+ "remote_device.h",
]
blundell 2014/08/29 10:15:46 and here.
Tim Song 2014/08/29 18:20:38 Done.
}
source_set("unit_tests") {
sources = [
- "auto_login_parser_unittest.cc",
+ "proximity_auth_system_unittest.cc",
]
deps = [
- ":auto_login_parser",
+ ":proximity_auth",
+ "//base/test:test_support",
"//testing/gtest",
]
}

Powered by Google App Engine
This is Rietveld 408576698