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

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

Issue 54743007: [GCM] Add connection factory for creating MCS connections (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Self review Created 7 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 | 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 15 matching lines...) Expand all
26 'GCM_IMPLEMENTATION', 26 'GCM_IMPLEMENTATION',
27 ], 27 ],
28 'export_dependent_settings': [ 28 'export_dependent_settings': [
29 '../../third_party/protobuf/protobuf.gyp:protobuf_lite' 29 '../../third_party/protobuf/protobuf.gyp:protobuf_lite'
30 ], 30 ],
31 'dependencies': [ 31 'dependencies': [
32 '../../base/base.gyp:base', 32 '../../base/base.gyp:base',
33 '../../components/components.gyp:encryptor', 33 '../../components/components.gyp:encryptor',
34 '../../net/net.gyp:net', 34 '../../net/net.gyp:net',
35 '../../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 35 '../../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
36 '../../third_party/protobuf/protobuf.gyp:protobuf_lite' 36 '../../third_party/protobuf/protobuf.gyp:protobuf_lite',
37 '../../url/url.gyp:url_lib',
37 ], 38 ],
38 'sources': [ 39 'sources': [
39 'base/mcs_message.h', 40 'base/mcs_message.h',
40 'base/mcs_message.cc', 41 'base/mcs_message.cc',
41 'base/mcs_util.h', 42 'base/mcs_util.h',
42 'base/mcs_util.cc', 43 'base/mcs_util.cc',
43 'base/socket_stream.h', 44 'base/socket_stream.h',
44 'base/socket_stream.cc', 45 'base/socket_stream.cc',
46 'engine/connection_factory.h',
47 'engine/connection_factory.cc',
48 'engine/connection_factory_impl.h',
49 'engine/connection_factory_impl.cc',
45 'engine/connection_handler.h', 50 'engine/connection_handler.h',
46 'engine/connection_handler.cc', 51 'engine/connection_handler.cc',
52 'engine/connection_handler_impl.h',
53 'engine/connection_handler_impl.cc',
47 'engine/rmq_store.h', 54 'engine/rmq_store.h',
48 'engine/rmq_store.cc', 55 'engine/rmq_store.cc',
49 'protocol/mcs.proto', 56 'protocol/mcs.proto',
50 ], 57 ],
51 'includes': [ 58 'includes': [
52 '../../build/protoc.gypi' 59 '../../build/protoc.gypi'
53 ], 60 ],
54 }, 61 },
55 62
56 # The main GCM unit tests. 63 # The main GCM unit tests.
57 { 64 {
58 'target_name': 'gcm_unit_tests', 65 'target_name': 'gcm_unit_tests',
59 'type': '<(gtest_target_type)', 66 'type': '<(gtest_target_type)',
60 'variables': { 'enable_wexit_time_destructors': 1, }, 67 'variables': { 'enable_wexit_time_destructors': 1, },
61 'include_dirs': [ 68 'include_dirs': [
62 '../..', 69 '../..',
63 ], 70 ],
64 'dependencies': [ 71 'dependencies': [
65 '../../base/base.gyp:run_all_unittests', 72 '../../base/base.gyp:run_all_unittests',
66 '../../base/base.gyp:base', 73 '../../base/base.gyp:base',
67 '../../net/net.gyp:net_test_support', 74 '../../net/net.gyp:net_test_support',
68 '../../testing/gtest.gyp:gtest', 75 '../../testing/gtest.gyp:gtest',
69 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', 76 '../../third_party/protobuf/protobuf.gyp:protobuf_lite',
70 'gcm' 77 'gcm'
71 ], 78 ],
72 'sources': [ 79 'sources': [
73 'base/mcs_util_unittest.cc', 80 'base/mcs_util_unittest.cc',
74 'base/socket_stream_unittest.cc', 81 'base/socket_stream_unittest.cc',
75 'engine/connection_handler_unittest.cc', 82 'engine/connection_handler_impl_unittest.cc',
76 'engine/rmq_store_unittest.cc', 83 'engine/rmq_store_unittest.cc',
77 ] 84 ]
78 }, 85 },
79 ], 86 ],
80 } 87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698