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/mcs_message.cc", | 10 "base/mcs_message.cc", |
(...skipping 17 matching lines...) Expand all Loading... |
28 "engine/gcm_store.cc", | 28 "engine/gcm_store.cc", |
29 "engine/gcm_store.h", | 29 "engine/gcm_store.h", |
30 "engine/gcm_store_impl.cc", | 30 "engine/gcm_store_impl.cc", |
31 "engine/gcm_store_impl.h", | 31 "engine/gcm_store_impl.h", |
32 "engine/gservices_settings.cc", | 32 "engine/gservices_settings.cc", |
33 "engine/gservices_settings.h", | 33 "engine/gservices_settings.h", |
34 "engine/heartbeat_manager.cc", | 34 "engine/heartbeat_manager.cc", |
35 "engine/heartbeat_manager.h", | 35 "engine/heartbeat_manager.h", |
36 "engine/mcs_client.cc", | 36 "engine/mcs_client.cc", |
37 "engine/mcs_client.h", | 37 "engine/mcs_client.h", |
38 "engine/registration_info.cc", | |
39 "engine/registration_info.h", | |
40 "engine/registration_request.cc", | 38 "engine/registration_request.cc", |
41 "engine/registration_request.h", | 39 "engine/registration_request.h", |
42 "engine/unregistration_request.cc", | 40 "engine/unregistration_request.cc", |
43 "engine/unregistration_request.h", | 41 "engine/unregistration_request.h", |
44 "monitoring/gcm_stats_recorder.h", | 42 "monitoring/gcm_stats_recorder.h", |
45 ] | 43 ] |
46 | 44 |
47 defines = [ "GCM_IMPLEMENTATION" ] | 45 defines = [ "GCM_IMPLEMENTATION" ] |
48 | 46 |
49 public_deps = [ | 47 public_deps = [ |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 ":gcm", | 131 ":gcm", |
134 ":test_support", | 132 ":test_support", |
135 "//base", | 133 "//base", |
136 "//base/test:run_all_unittests", | 134 "//base/test:run_all_unittests", |
137 "//net", | 135 "//net", |
138 "//net:test_support", | 136 "//net:test_support", |
139 "//testing/gtest", | 137 "//testing/gtest", |
140 "//third_party/protobuf:protobuf_lite", | 138 "//third_party/protobuf:protobuf_lite", |
141 ] | 139 ] |
142 } | 140 } |
OLD | NEW |