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

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

Issue 1137463003: Support getting and deleting token for Instance ID. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch to land Created 5 years, 7 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 21 matching lines...) Expand all
32 'dependencies': [ 32 'dependencies': [
33 '../../base/base.gyp:base', 33 '../../base/base.gyp:base',
34 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 34 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
35 '../../net/net.gyp:net', 35 '../../net/net.gyp:net',
36 '../../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 36 '../../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
37 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', 37 '../../third_party/protobuf/protobuf.gyp:protobuf_lite',
38 '../../url/url.gyp:url_lib', 38 '../../url/url.gyp:url_lib',
39 ], 39 ],
40 'sources': [ 40 'sources': [
41 # Note: sources list duplicated in GN build. 41 # Note: sources list duplicated in GN build.
42 'base/gcm_util.cc',
43 'base/gcm_util.h',
42 'base/mcs_message.cc', 44 'base/mcs_message.cc',
43 'base/mcs_message.h', 45 'base/mcs_message.h',
44 'base/mcs_util.cc', 46 'base/mcs_util.cc',
45 'base/mcs_util.h', 47 'base/mcs_util.h',
46 'base/socket_stream.cc', 48 'base/socket_stream.cc',
47 'base/socket_stream.h', 49 'base/socket_stream.h',
48 'engine/account_mapping.cc', 50 'engine/account_mapping.cc',
49 'engine/account_mapping.h', 51 'engine/account_mapping.h',
50 'engine/checkin_request.cc', 52 'engine/checkin_request.cc',
51 'engine/checkin_request.h', 53 'engine/checkin_request.h',
52 'engine/connection_factory.cc', 54 'engine/connection_factory.cc',
53 'engine/connection_factory.h', 55 'engine/connection_factory.h',
54 'engine/connection_factory_impl.cc', 56 'engine/connection_factory_impl.cc',
55 'engine/connection_factory_impl.h', 57 'engine/connection_factory_impl.h',
56 'engine/connection_handler.cc', 58 'engine/connection_handler.cc',
57 'engine/connection_handler.h', 59 'engine/connection_handler.h',
58 'engine/connection_handler_impl.cc', 60 'engine/connection_handler_impl.cc',
59 'engine/connection_handler_impl.h', 61 'engine/connection_handler_impl.h',
62 'engine/gcm_registration_request_handler.cc',
63 'engine/gcm_registration_request_handler.h',
60 'engine/gcm_store.cc', 64 'engine/gcm_store.cc',
61 'engine/gcm_store.h', 65 'engine/gcm_store.h',
62 'engine/gcm_store_impl.cc', 66 'engine/gcm_store_impl.cc',
63 'engine/gcm_store_impl.h', 67 'engine/gcm_store_impl.h',
68 'engine/gcm_unregistration_request_handler.cc',
69 'engine/gcm_unregistration_request_handler.h',
64 'engine/gservices_settings.cc', 70 'engine/gservices_settings.cc',
65 'engine/gservices_settings.h', 71 'engine/gservices_settings.h',
66 'engine/heartbeat_manager.cc', 72 'engine/heartbeat_manager.cc',
67 'engine/heartbeat_manager.h', 73 'engine/heartbeat_manager.h',
74 'engine/instance_id_delete_token_request_handler.cc',
75 'engine/instance_id_delete_token_request_handler.h',
76 'engine/instance_id_get_token_request_handler.cc',
77 'engine/instance_id_get_token_request_handler.h',
68 'engine/mcs_client.cc', 78 'engine/mcs_client.cc',
69 'engine/mcs_client.h', 79 'engine/mcs_client.h',
70 'engine/registration_info.cc',
71 'engine/registration_info.h',
72 'engine/registration_request.cc', 80 'engine/registration_request.cc',
73 'engine/registration_request.h', 81 'engine/registration_request.h',
74 'engine/unregistration_request.cc', 82 'engine/unregistration_request.cc',
75 'engine/unregistration_request.h', 83 'engine/unregistration_request.h',
76 'monitoring/gcm_stats_recorder.h', 84 'monitoring/gcm_stats_recorder.h',
77 'protocol/android_checkin.proto', 85 'protocol/android_checkin.proto',
78 'protocol/checkin.proto', 86 'protocol/checkin.proto',
79 'protocol/mcs.proto', 87 'protocol/mcs.proto',
80 ], 88 ],
81 'includes': [ 89 'includes': [
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 'engine/gcm_store_impl_unittest.cc', 176 'engine/gcm_store_impl_unittest.cc',
169 'engine/gservices_settings_unittest.cc', 177 'engine/gservices_settings_unittest.cc',
170 'engine/heartbeat_manager_unittest.cc', 178 'engine/heartbeat_manager_unittest.cc',
171 'engine/mcs_client_unittest.cc', 179 'engine/mcs_client_unittest.cc',
172 'engine/registration_request_unittest.cc', 180 'engine/registration_request_unittest.cc',
173 'engine/unregistration_request_unittest.cc', 181 'engine/unregistration_request_unittest.cc',
174 ] 182 ]
175 }, 183 },
176 ], 184 ],
177 } 185 }
OLDNEW
« no previous file with comments | « google_apis/gcm/engine/unregistration_request_unittest.cc ('k') | google_apis/gcm/monitoring/fake_gcm_stats_recorder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698