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

Unified Diff: components/gcm_driver/BUILD.gn

Issue 530253002: Add GCMChannelStatusRequest to talk with server for all users (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix gn build 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/gcm_driver.gypi ('k') | components/gcm_driver/gcm_backoff_policy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/gcm_driver/BUILD.gn
diff --git a/components/gcm_driver/BUILD.gn b/components/gcm_driver/BUILD.gn
index 6ee0dc64d7914e6708ff19ff097b69bfaa1eb6c6..eb6c8117b4246ccc4ff048c34bc5c856570ed71b 100644
--- a/components/gcm_driver/BUILD.gn
+++ b/components/gcm_driver/BUILD.gn
@@ -12,6 +12,10 @@ static_library("gcm_driver") {
"gcm_activity.h",
"gcm_app_handler.cc",
"gcm_app_handler.h",
+ "gcm_backoff_policy.cc",
+ "gcm_backoff_policy.h",
+ "gcm_channel_status_request.cc",
+ "gcm_channel_status_request.h",
"gcm_client.cc",
"gcm_client.h",
"gcm_client_factory.cc",
@@ -34,6 +38,7 @@ static_library("gcm_driver") {
deps = [
"//base",
+ "//components/gcm_driver/proto",
"//components/os_crypt",
"//google_apis/gcm",
"//net",
@@ -41,6 +46,8 @@ static_library("gcm_driver") {
if (is_android) {
sources -= [
+ "gcm_channel_status_request.cc",
+ "gcm_channel_status_request.h",
"gcm_client_factory.cc",
"gcm_client_factory.h",
"gcm_client_impl.cc",
@@ -50,7 +57,10 @@ static_library("gcm_driver") {
"gcm_stats_recorder_impl.cc",
"gcm_stats_recorder_impl.h",
]
- deps -= [ "//google_apis/gcm" ]
+ deps -= [
+ "//components/gcm_driver/proto",
+ "//google_apis/gcm",
+ ]
deps += [ ":jni_headers" ]
}
}
« no previous file with comments | « components/gcm_driver.gypi ('k') | components/gcm_driver/gcm_backoff_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698