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

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

Issue 1137463003: Support getting and deleting token for Instance ID. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Pass InstanceID to requests Created 5 years, 7 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 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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698