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

Unified Diff: blimp/client/core/session/BUILD.gn

Issue 2204223005: Blimp OAuth2 token retreival on application start up. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes for nits. Created 4 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
« no previous file with comments | « blimp/client/core/dummy_blimp_client_context.cc ('k') | blimp/client/core/session/identity_source.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/core/session/BUILD.gn
diff --git a/blimp/client/core/session/BUILD.gn b/blimp/client/core/session/BUILD.gn
index 6af914abb9b473397b1f8038bfa5051deb94801b..58ceca6c86d9d253cbcd6ad72a8ca6f8f8b670b9 100644
--- a/blimp/client/core/session/BUILD.gn
+++ b/blimp/client/core/session/BUILD.gn
@@ -20,6 +20,8 @@ source_set("session") {
"client_network_components.h",
"cross_thread_network_event_observer.cc",
"cross_thread_network_event_observer.h",
+ "identity_source.cc",
+ "identity_source.h",
"network_event_observer.h",
]
@@ -28,6 +30,7 @@ source_set("session") {
"//blimp/client/public:public_headers",
"//blimp/net",
"//components/safe_json",
+ "//google_apis",
"//net",
"//url",
]
@@ -43,9 +46,18 @@ source_set("unit_tests") {
testonly = true
- sources = []
+ sources = [
+ "identity_source_unittest.cc",
+ ]
- deps = []
+ deps = [
+ ":session",
+ "//base",
+ "//blimp/client/test:test",
+ "//google_apis:test_support",
+ "//testing/gmock",
+ "//testing/gtest",
+ ]
data = []
@@ -55,15 +67,11 @@ source_set("unit_tests") {
sources += [ "assignment_source_unittest.cc" ]
deps += [
- ":session",
- "//base",
"//blimp/client/core:switches",
"//blimp/common",
"//blimp/common:test_support",
"//components/safe_json:test_support",
"//net:test_support",
- "//testing/gmock",
- "//testing/gtest",
"//url",
]
« no previous file with comments | « blimp/client/core/dummy_blimp_client_context.cc ('k') | blimp/client/core/session/identity_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698