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

Side by Side Diff: google_apis/gcm/BUILD.gn

Issue 2481873002: Added ClientEvent proto and structure for storing events in the factory. (Closed)
Patch Set: Integrated code review comments Created 4 years 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
« no previous file with comments | « no previous file | google_apis/gcm/engine/connection_event_tracker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//third_party/protobuf/proto_library.gni") 6 import("//third_party/protobuf/proto_library.gni")
7 7
8 component("gcm") { 8 component("gcm") {
9 sources = [ 9 sources = [
10 "base/gcm_util.cc", 10 "base/gcm_util.cc",
11 "base/gcm_util.h", 11 "base/gcm_util.h",
12 "base/mcs_message.cc", 12 "base/mcs_message.cc",
13 "base/mcs_message.h", 13 "base/mcs_message.h",
14 "base/mcs_util.cc", 14 "base/mcs_util.cc",
15 "base/mcs_util.h", 15 "base/mcs_util.h",
16 "base/socket_stream.cc", 16 "base/socket_stream.cc",
17 "base/socket_stream.h", 17 "base/socket_stream.h",
18 "engine/account_mapping.cc", 18 "engine/account_mapping.cc",
19 "engine/account_mapping.h", 19 "engine/account_mapping.h",
20 "engine/checkin_request.cc", 20 "engine/checkin_request.cc",
21 "engine/checkin_request.h", 21 "engine/checkin_request.h",
22 "engine/connection_event_tracker.cc",
23 "engine/connection_event_tracker.h",
22 "engine/connection_factory.cc", 24 "engine/connection_factory.cc",
23 "engine/connection_factory.h", 25 "engine/connection_factory.h",
24 "engine/connection_factory_impl.cc", 26 "engine/connection_factory_impl.cc",
25 "engine/connection_factory_impl.h", 27 "engine/connection_factory_impl.h",
26 "engine/connection_handler.cc", 28 "engine/connection_handler.cc",
27 "engine/connection_handler.h", 29 "engine/connection_handler.h",
28 "engine/connection_handler_impl.cc", 30 "engine/connection_handler_impl.cc",
29 "engine/connection_handler_impl.h", 31 "engine/connection_handler_impl.h",
30 "engine/gcm_registration_request_handler.cc", 32 "engine/gcm_registration_request_handler.cc",
31 "engine/gcm_registration_request_handler.h", 33 "engine/gcm_registration_request_handler.h",
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 } 131 }
130 } 132 }
131 133
132 test("gcm_unit_tests") { 134 test("gcm_unit_tests") {
133 sources = [ 135 sources = [
134 "base/mcs_message_unittest.cc", 136 "base/mcs_message_unittest.cc",
135 "base/mcs_util_unittest.cc", 137 "base/mcs_util_unittest.cc",
136 "base/socket_stream_unittest.cc", 138 "base/socket_stream_unittest.cc",
137 "engine/account_mapping_unittest.cc", 139 "engine/account_mapping_unittest.cc",
138 "engine/checkin_request_unittest.cc", 140 "engine/checkin_request_unittest.cc",
141 "engine/connection_event_tracker_unittest.cc",
139 "engine/connection_factory_impl_unittest.cc", 142 "engine/connection_factory_impl_unittest.cc",
140 "engine/connection_handler_impl_unittest.cc", 143 "engine/connection_handler_impl_unittest.cc",
141 "engine/gcm_request_test_base.cc", 144 "engine/gcm_request_test_base.cc",
142 "engine/gcm_request_test_base.h", 145 "engine/gcm_request_test_base.h",
143 "engine/gcm_store_impl_unittest.cc", 146 "engine/gcm_store_impl_unittest.cc",
144 "engine/gservices_settings_unittest.cc", 147 "engine/gservices_settings_unittest.cc",
145 "engine/heartbeat_manager_unittest.cc", 148 "engine/heartbeat_manager_unittest.cc",
146 "engine/mcs_client_unittest.cc", 149 "engine/mcs_client_unittest.cc",
147 "engine/registration_request_unittest.cc", 150 "engine/registration_request_unittest.cc",
148 "engine/unregistration_request_unittest.cc", 151 "engine/unregistration_request_unittest.cc",
149 ] 152 ]
150 153
151 deps = [ 154 deps = [
152 ":gcm", 155 ":gcm",
153 ":test_support", 156 ":test_support",
154 "//base", 157 "//base",
155 "//base/test:run_all_unittests", 158 "//base/test:run_all_unittests",
156 "//net", 159 "//net",
157 "//net:test_support", 160 "//net:test_support",
158 "//testing/gtest", 161 "//testing/gtest",
159 "//third_party/protobuf:protobuf_lite", 162 "//third_party/protobuf:protobuf_lite",
160 ] 163 ]
161 } 164 }
OLDNEW
« no previous file with comments | « no previous file | google_apis/gcm/engine/connection_event_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698