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

Side by Side Diff: components/gcm_driver.gypi

Issue 641943002: components: Introduce AlarmTimer class and use it for GCM heartbeat (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build error in mcs_probe Created 6 years, 1 month 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/components_tests.gyp ('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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/gcm_driver 8 # GN version: //components/gcm_driver
9 'target_name': 'gcm_driver', 9 'target_name': 'gcm_driver',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 'gcm_driver/gcm_client_impl.h', 83 'gcm_driver/gcm_client_impl.h',
84 'gcm_driver/gcm_delayed_task_controller.cc', 84 'gcm_driver/gcm_delayed_task_controller.cc',
85 'gcm_driver/gcm_delayed_task_controller.h', 85 'gcm_driver/gcm_delayed_task_controller.h',
86 'gcm_driver/gcm_driver_desktop.cc', 86 'gcm_driver/gcm_driver_desktop.cc',
87 'gcm_driver/gcm_driver_desktop.h', 87 'gcm_driver/gcm_driver_desktop.h',
88 'gcm_driver/gcm_stats_recorder_impl.cc', 88 'gcm_driver/gcm_stats_recorder_impl.cc',
89 'gcm_driver/gcm_stats_recorder_impl.h', 89 'gcm_driver/gcm_stats_recorder_impl.h',
90 'gcm_driver/proto/gcm_channel_status.proto', 90 'gcm_driver/proto/gcm_channel_status.proto',
91 ], 91 ],
92 }], 92 }],
93 ['chromeos == 1', {
94 'dependencies': [
95 'timers',
96 ],
97 }],
93 ], 98 ],
94 }, 99 },
95 { 100 {
96 # GN version: //components/gcm_driver:test_support 101 # GN version: //components/gcm_driver:test_support
97 'target_name': 'gcm_driver_test_support', 102 'target_name': 'gcm_driver_test_support',
98 'type': 'static_library', 103 'type': 'static_library',
99 'dependencies': [ 104 'dependencies': [
100 'gcm_driver', 105 'gcm_driver',
101 '../base/base.gyp:base', 106 '../base/base.gyp:base',
102 '../google_apis/gcm/gcm.gyp:gcm_test_support', 107 '../google_apis/gcm/gcm.gyp:gcm_test_support',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 'variables': { 164 'variables': {
160 'jni_gen_package': 'components/gcm_driver', 165 'jni_gen_package': 'components/gcm_driver',
161 }, 166 },
162 'includes': [ '../build/jni_generator.gypi' ], 167 'includes': [ '../build/jni_generator.gypi' ],
163 }, 168 },
164 ], 169 ],
165 }, 170 },
166 ], 171 ],
167 ], 172 ],
168 } 173 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/gcm_driver/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698