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

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

Issue 121743002: Renaming RMQStore to GCMStore and breaking out its interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updates based on CR Created 6 years, 12 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 20 matching lines...) Expand all
31 'dependencies': [ 31 'dependencies': [
32 '../../base/base.gyp:base', 32 '../../base/base.gyp:base',
33 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 33 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
34 '../../components/components.gyp:encryptor', 34 '../../components/components.gyp:encryptor',
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 'base/mcs_message.cc',
41 'base/mcs_message.h', 42 'base/mcs_message.h',
42 'base/mcs_message.cc', 43 'base/mcs_util.cc',
43 'base/mcs_util.h', 44 'base/mcs_util.h',
44 'base/mcs_util.cc', 45 'base/socket_stream.cc',
45 'base/socket_stream.h', 46 'base/socket_stream.h',
46 'base/socket_stream.cc', 47 'engine/connection_factory.cc',
47 'engine/connection_factory.h', 48 'engine/connection_factory.h',
48 'engine/connection_factory.cc', 49 'engine/connection_factory_impl.cc',
49 'engine/connection_factory_impl.h', 50 'engine/connection_factory_impl.h',
50 'engine/connection_factory_impl.cc', 51 'engine/connection_handler.cc',
51 'engine/connection_handler.h', 52 'engine/connection_handler.h',
52 'engine/connection_handler.cc', 53 'engine/connection_handler_impl.cc',
53 'engine/connection_handler_impl.h', 54 'engine/connection_handler_impl.h',
54 'engine/connection_handler_impl.cc', 55 'engine/gcm_store.cc',
56 'engine/gcm_store.h',
57 'engine/gcm_store_impl.cc',
58 'engine/gcm_store_impl.h',
59 'engine/mcs_client.cc',
55 'engine/mcs_client.h', 60 'engine/mcs_client.h',
56 'engine/mcs_client.cc',
57 'engine/rmq_store.h',
58 'engine/rmq_store.cc',
59 'gcm_client.cc', 61 'gcm_client.cc',
60 'gcm_client.h', 62 'gcm_client.h',
61 'gcm_client_impl.cc', 63 'gcm_client_impl.cc',
62 'gcm_client_impl.h', 64 'gcm_client_impl.h',
63 'protocol/mcs.proto', 65 'protocol/mcs.proto',
64 ], 66 ],
65 'includes': [ 67 'includes': [
66 '../../build/protoc.gypi' 68 '../../build/protoc.gypi'
67 ], 69 ],
68 }, 70 },
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 '../../testing/gtest.gyp:gtest', 109 '../../testing/gtest.gyp:gtest',
108 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', 110 '../../third_party/protobuf/protobuf.gyp:protobuf_lite',
109 'gcm' 111 'gcm'
110 ], 112 ],
111 'sources': [ 113 'sources': [
112 'base/mcs_message_unittest.cc', 114 'base/mcs_message_unittest.cc',
113 'base/mcs_util_unittest.cc', 115 'base/mcs_util_unittest.cc',
114 'base/socket_stream_unittest.cc', 116 'base/socket_stream_unittest.cc',
115 'engine/connection_factory_impl_unittest.cc', 117 'engine/connection_factory_impl_unittest.cc',
116 'engine/connection_handler_impl_unittest.cc', 118 'engine/connection_handler_impl_unittest.cc',
119 'engine/fake_connection_factory.cc',
117 'engine/fake_connection_factory.h', 120 'engine/fake_connection_factory.h',
118 'engine/fake_connection_factory.cc', 121 'engine/fake_connection_handler.cc',
119 'engine/fake_connection_handler.h', 122 'engine/fake_connection_handler.h',
120 'engine/fake_connection_handler.cc',
121 'engine/mcs_client_unittest.cc', 123 'engine/mcs_client_unittest.cc',
122 'engine/rmq_store_unittest.cc', 124 'engine/gcm_store_impl_unittest.cc',
123 ] 125 ]
124 }, 126 },
125 ], 127 ],
126 } 128 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698