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

Unified Diff: components/proximity_auth/cryptauth/BUILD.gn

Issue 738593002: Introduce CryptAuthClient, a class capable of performing all CryptAuth APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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/cryptauth/BUILD.gn
diff --git a/components/proximity_auth/cryptauth/BUILD.gn b/components/proximity_auth/cryptauth/BUILD.gn
index 63de939d86a46296e277afe06526661327ecd5a2..66308d931334e49bd783ba610e5e5a4a4921e75b 100644
--- a/components/proximity_auth/cryptauth/BUILD.gn
+++ b/components/proximity_auth/cryptauth/BUILD.gn
@@ -4,11 +4,15 @@
source_set("cryptauth") {
sources = [
+ "cryptauth_access_token_fetcher.h",
"cryptauth_api_call_flow.cc",
"cryptauth_api_call_flow.h",
+ "cryptauth_client.cc",
+ "cryptauth_client.h",
]
deps = [
+ "proto",
Ilya Sherman 2014/11/18 22:30:43 Should this be a public dep, to match the export_d
Tim Song 2014/12/03 01:18:23 Done.
"//base",
"//google_apis",
"//net",
@@ -19,6 +23,7 @@ source_set("unit_tests") {
testonly = true
sources = [
"cryptauth_api_call_flow_unittest.cc",
+ "cryptauth_client_unittest.cc",
]
deps = [

Powered by Google App Engine
This is Rietveld 408576698