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

Side by Side Diff: google_apis/gcm/gcm.gyp

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: Move the code over to components/ Created 6 years, 2 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'targets': [ 10 'targets': [
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'engine/unregistration_request.cc', 74 'engine/unregistration_request.cc',
75 'engine/unregistration_request.h', 75 'engine/unregistration_request.h',
76 'monitoring/gcm_stats_recorder.h', 76 'monitoring/gcm_stats_recorder.h',
77 'protocol/android_checkin.proto', 77 'protocol/android_checkin.proto',
78 'protocol/checkin.proto', 78 'protocol/checkin.proto',
79 'protocol/mcs.proto', 79 'protocol/mcs.proto',
80 ], 80 ],
81 'includes': [ 81 'includes': [
82 '../../build/protoc.gypi' 82 '../../build/protoc.gypi'
83 ], 83 ],
84 'conditions': [
85 ['chromeos == 1', {
86 'dependencies': [
87 '../../components/components.gyp:timer',
88 ],
89 }],
90 ],
84 }, 91 },
85 92
86 # The test support library that is needed to test gcm. 93 # The test support library that is needed to test gcm.
87 { 94 {
88 # GN version: //google_apis/gcm:test_support 95 # GN version: //google_apis/gcm:test_support
89 'target_name': 'gcm_test_support', 96 'target_name': 'gcm_test_support',
90 'type': 'static_library', 97 'type': 'static_library',
91 'include_dirs': [ 98 'include_dirs': [
92 '..', 99 '..',
93 ], 100 ],
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 'engine/gcm_store_impl_unittest.cc', 175 'engine/gcm_store_impl_unittest.cc',
169 'engine/gservices_settings_unittest.cc', 176 'engine/gservices_settings_unittest.cc',
170 'engine/heartbeat_manager_unittest.cc', 177 'engine/heartbeat_manager_unittest.cc',
171 'engine/mcs_client_unittest.cc', 178 'engine/mcs_client_unittest.cc',
172 'engine/registration_request_unittest.cc', 179 'engine/registration_request_unittest.cc',
173 'engine/unregistration_request_unittest.cc', 180 'engine/unregistration_request_unittest.cc',
174 ] 181 ]
175 }, 182 },
176 ], 183 ],
177 } 184 }
OLDNEW
« google_apis/gcm/engine/heartbeat_manager.cc ('K') | « google_apis/gcm/engine/mcs_client_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698