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

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

Issue 246863004: WIP initial sketch for an Android GCMClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'engine/registration_info.cc', 65 'engine/registration_info.cc',
66 'engine/registration_info.h', 66 'engine/registration_info.h',
67 'engine/registration_request.cc', 67 'engine/registration_request.cc',
68 'engine/registration_request.h', 68 'engine/registration_request.h',
69 'engine/unregistration_request.cc', 69 'engine/unregistration_request.cc',
70 'engine/unregistration_request.h', 70 'engine/unregistration_request.h',
71 'gcm_client.cc', 71 'gcm_client.cc',
72 'gcm_client.h', 72 'gcm_client.h',
73 'gcm_client_impl.cc', 73 'gcm_client_impl.cc',
74 'gcm_client_impl.h', 74 'gcm_client_impl.h',
75 'gcm_client_impl_android.cc',
76 'gcm_client_impl_android.h',
75 'protocol/android_checkin.proto', 77 'protocol/android_checkin.proto',
76 'protocol/checkin.proto', 78 'protocol/checkin.proto',
77 'protocol/mcs.proto', 79 'protocol/mcs.proto',
78 ], 80 ],
81 'conditions': [
82 ['OS=="android"', {
83 'sources!': [
84 'gcm_client_impl.cc',
85 'gcm_client_impl.h',
86 ],
87 }],
88 ],
79 'includes': [ 89 'includes': [
80 '../../build/protoc.gypi' 90 '../../build/protoc.gypi'
81 ], 91 ],
82 }, 92 },
83 93
84 # A standalone MCS (mobile connection server) client. 94 # A standalone MCS (mobile connection server) client.
85 { 95 {
86 'target_name': 'mcs_probe', 96 'target_name': 'mcs_probe',
87 'type': 'executable', 97 'type': 'executable',
88 'variables': { 'enable_wexit_time_destructors': 1, }, 98 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 'engine/gcm_store_impl_unittest.cc', 146 'engine/gcm_store_impl_unittest.cc',
137 'engine/heartbeat_manager_unittest.cc', 147 'engine/heartbeat_manager_unittest.cc',
138 'engine/mcs_client_unittest.cc', 148 'engine/mcs_client_unittest.cc',
139 'engine/registration_request_unittest.cc', 149 'engine/registration_request_unittest.cc',
140 'engine/unregistration_request_unittest.cc', 150 'engine/unregistration_request_unittest.cc',
141 'gcm_client_impl_unittest.cc' 151 'gcm_client_impl_unittest.cc'
142 ] 152 ]
143 }, 153 },
144 ], 154 ],
145 } 155 }
OLDNEW
« no previous file with comments | « chrome/browser/services/gcm/gcm_client_factory.cc ('k') | google_apis/gcm/gcm_client_impl_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698