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

Side by Side Diff: components/gcm_driver/BUILD.gn

Issue 561943002: Reland: Add GCMChannelStatusSyncer to schedule requests and enable/disable GCM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix CrOS test failures 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 unified diff | Download patch
« no previous file with comments | « components/gcm_driver.gypi ('k') | components/gcm_driver/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # GYP version: components/gcm_driver.gypi:gcm_driver 5 # GYP version: components/gcm_driver.gypi:gcm_driver
6 static_library("gcm_driver") { 6 static_library("gcm_driver") {
7 sources = [ 7 sources = [
8 "android/component_jni_registrar.cc", 8 "android/component_jni_registrar.cc",
9 "android/component_jni_registrar.h", 9 "android/component_jni_registrar.h",
10 "default_gcm_app_handler.cc", 10 "default_gcm_app_handler.cc",
11 "default_gcm_app_handler.h", 11 "default_gcm_app_handler.h",
12 "gcm_activity.cc", 12 "gcm_activity.cc",
13 "gcm_activity.h", 13 "gcm_activity.h",
14 "gcm_app_handler.cc", 14 "gcm_app_handler.cc",
15 "gcm_app_handler.h", 15 "gcm_app_handler.h",
16 "gcm_backoff_policy.cc", 16 "gcm_backoff_policy.cc",
17 "gcm_backoff_policy.h", 17 "gcm_backoff_policy.h",
18 "gcm_channel_status_request.cc", 18 "gcm_channel_status_request.cc",
19 "gcm_channel_status_request.h", 19 "gcm_channel_status_request.h",
20 "gcm_channel_status_syncer.cc",
21 "gcm_channel_status_syncer.h",
20 "gcm_client.cc", 22 "gcm_client.cc",
21 "gcm_client.h", 23 "gcm_client.h",
22 "gcm_client_factory.cc", 24 "gcm_client_factory.cc",
23 "gcm_client_factory.h", 25 "gcm_client_factory.h",
24 "gcm_client_impl.cc", 26 "gcm_client_impl.cc",
25 "gcm_client_impl.h", 27 "gcm_client_impl.h",
26 "gcm_connection_observer.cc", 28 "gcm_connection_observer.cc",
27 "gcm_connection_observer.h", 29 "gcm_connection_observer.h",
28 "gcm_delayed_task_controller.cc", 30 "gcm_delayed_task_controller.cc",
29 "gcm_delayed_task_controller.h", 31 "gcm_delayed_task_controller.h",
(...skipping 14 matching lines...) Expand all
44 "//components/gcm_driver/proto", 46 "//components/gcm_driver/proto",
45 "//components/os_crypt", 47 "//components/os_crypt",
46 "//google_apis/gcm", 48 "//google_apis/gcm",
47 "//net", 49 "//net",
48 ] 50 ]
49 51
50 if (is_android) { 52 if (is_android) {
51 sources -= [ 53 sources -= [
52 "gcm_channel_status_request.cc", 54 "gcm_channel_status_request.cc",
53 "gcm_channel_status_request.h", 55 "gcm_channel_status_request.h",
56 "gcm_channel_status_syncer.cc",
57 "gcm_channel_status_syncer.h",
54 "gcm_client_factory.cc", 58 "gcm_client_factory.cc",
55 "gcm_client_factory.h", 59 "gcm_client_factory.h",
56 "gcm_client_impl.cc", 60 "gcm_client_impl.cc",
57 "gcm_client_impl.h", 61 "gcm_client_impl.h",
58 "gcm_delayed_task_controller.cc", 62 "gcm_delayed_task_controller.cc",
59 "gcm_delayed_task_controller.h", 63 "gcm_delayed_task_controller.h",
60 "gcm_driver_desktop.cc", 64 "gcm_driver_desktop.cc",
61 "gcm_driver_desktop.h", 65 "gcm_driver_desktop.h",
62 "gcm_stats_recorder_impl.cc", 66 "gcm_stats_recorder_impl.cc",
63 "gcm_stats_recorder_impl.h", 67 "gcm_stats_recorder_impl.h",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 import("//build/config/android/rules.gni") 109 import("//build/config/android/rules.gni")
106 110
107 # GYP version: components/gcm_driver.gypi:gcm_driver_jni_headers 111 # GYP version: components/gcm_driver.gypi:gcm_driver_jni_headers
108 generate_jni("jni_headers") { 112 generate_jni("jni_headers") {
109 sources = [ 113 sources = [
110 "android/java/src/org/chromium/components/gcm_driver/GCMDriver.java", 114 "android/java/src/org/chromium/components/gcm_driver/GCMDriver.java",
111 ] 115 ]
112 jni_package = "components/gcm_driver" 116 jni_package = "components/gcm_driver"
113 } 117 }
114 } 118 }
OLDNEW
« no previous file with comments | « components/gcm_driver.gypi ('k') | components/gcm_driver/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698