| 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" ]
|
| }
|
| }
|
|
|