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

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 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..6b1fe35c15a355fb37ec8c56840dabd87e4d0f23 100644
--- a/components/proximity_auth/cryptauth/BUILD.gn
+++ b/components/proximity_auth/cryptauth/BUILD.gn
@@ -4,8 +4,11 @@
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 = [
@@ -13,12 +16,17 @@ source_set("cryptauth") {
"//google_apis",
"//net",
]
+
+ public_deps = [
+ "proto",
+ ]
}
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