OLD | NEW |
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", |
| 11 "base/gcm_util.h", |
10 "base/mcs_message.cc", | 12 "base/mcs_message.cc", |
11 "base/mcs_message.h", | 13 "base/mcs_message.h", |
12 "base/mcs_util.cc", | 14 "base/mcs_util.cc", |
13 "base/mcs_util.h", | 15 "base/mcs_util.h", |
14 "base/socket_stream.cc", | 16 "base/socket_stream.cc", |
15 "base/socket_stream.h", | 17 "base/socket_stream.h", |
16 "engine/account_mapping.cc", | 18 "engine/account_mapping.cc", |
17 "engine/account_mapping.h", | 19 "engine/account_mapping.h", |
18 "engine/checkin_request.cc", | 20 "engine/checkin_request.cc", |
19 "engine/checkin_request.h", | 21 "engine/checkin_request.h", |
20 "engine/connection_factory.cc", | 22 "engine/connection_factory.cc", |
21 "engine/connection_factory.h", | 23 "engine/connection_factory.h", |
22 "engine/connection_factory_impl.cc", | 24 "engine/connection_factory_impl.cc", |
23 "engine/connection_factory_impl.h", | 25 "engine/connection_factory_impl.h", |
24 "engine/connection_handler.cc", | 26 "engine/connection_handler.cc", |
25 "engine/connection_handler.h", | 27 "engine/connection_handler.h", |
26 "engine/connection_handler_impl.cc", | 28 "engine/connection_handler_impl.cc", |
27 "engine/connection_handler_impl.h", | 29 "engine/connection_handler_impl.h", |
| 30 "engine/gcm_registration_request_handler.cc", |
| 31 "engine/gcm_registration_request_handler.h", |
28 "engine/gcm_store.cc", | 32 "engine/gcm_store.cc", |
29 "engine/gcm_store.h", | 33 "engine/gcm_store.h", |
30 "engine/gcm_store_impl.cc", | 34 "engine/gcm_store_impl.cc", |
31 "engine/gcm_store_impl.h", | 35 "engine/gcm_store_impl.h", |
| 36 "engine/gcm_unregistration_request_handler.cc", |
| 37 "engine/gcm_unregistration_request_handler.h", |
32 "engine/gservices_settings.cc", | 38 "engine/gservices_settings.cc", |
33 "engine/gservices_settings.h", | 39 "engine/gservices_settings.h", |
34 "engine/heartbeat_manager.cc", | 40 "engine/heartbeat_manager.cc", |
35 "engine/heartbeat_manager.h", | 41 "engine/heartbeat_manager.h", |
| 42 "engine/instance_id_delete_token_request_handler.cc", |
| 43 "engine/instance_id_delete_token_request_handler.h", |
| 44 "engine/instance_id_get_token_request_handler.cc", |
| 45 "engine/instance_id_get_token_request_handler.h", |
36 "engine/mcs_client.cc", | 46 "engine/mcs_client.cc", |
37 "engine/mcs_client.h", | 47 "engine/mcs_client.h", |
38 "engine/registration_info.cc", | |
39 "engine/registration_info.h", | |
40 "engine/registration_request.cc", | 48 "engine/registration_request.cc", |
41 "engine/registration_request.h", | 49 "engine/registration_request.h", |
42 "engine/unregistration_request.cc", | 50 "engine/unregistration_request.cc", |
43 "engine/unregistration_request.h", | 51 "engine/unregistration_request.h", |
44 "monitoring/gcm_stats_recorder.h", | 52 "monitoring/gcm_stats_recorder.h", |
45 ] | 53 ] |
46 | 54 |
47 defines = [ "GCM_IMPLEMENTATION" ] | 55 defines = [ "GCM_IMPLEMENTATION" ] |
48 | 56 |
49 public_deps = [ | 57 public_deps = [ |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 ":gcm", | 141 ":gcm", |
134 ":test_support", | 142 ":test_support", |
135 "//base", | 143 "//base", |
136 "//base/test:run_all_unittests", | 144 "//base/test:run_all_unittests", |
137 "//net", | 145 "//net", |
138 "//net:test_support", | 146 "//net:test_support", |
139 "//testing/gtest", | 147 "//testing/gtest", |
140 "//third_party/protobuf:protobuf_lite", | 148 "//third_party/protobuf:protobuf_lite", |
141 ] | 149 ] |
142 } | 150 } |
OLD | NEW |