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

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

Issue 1330443002: Report data usage UMA for Chrome services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@NewArchServices
Patch Set: Updating the function name and some of gyp files. Created 5 years, 3 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/gcm_util.cc", 10 "base/gcm_util.cc",
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 ] 55 ]
56 56
57 defines = [ "GCM_IMPLEMENTATION" ] 57 defines = [ "GCM_IMPLEMENTATION" ]
58 58
59 public_deps = [ 59 public_deps = [
60 ":proto", 60 ":proto",
61 ] 61 ]
62 deps = [ 62 deps = [
63 "//base", 63 "//base",
64 "//base/third_party/dynamic_annotations", 64 "//base/third_party/dynamic_annotations",
65 "//components/data_use_measurement/core",
65 "//net", 66 "//net",
66 "//third_party/leveldatabase", 67 "//third_party/leveldatabase",
67 "//url", 68 "//url",
68 ] 69 ]
69 } 70 }
70 71
71 proto_library("proto") { 72 proto_library("proto") {
72 # This is part of the gcm component. 73 # This is part of the gcm component.
73 visibility = [ ":gcm" ] 74 visibility = [ ":gcm" ]
74 sources = [ 75 sources = [
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 ":gcm", 156 ":gcm",
156 ":test_support", 157 ":test_support",
157 "//base", 158 "//base",
158 "//base/test:run_all_unittests", 159 "//base/test:run_all_unittests",
159 "//net", 160 "//net",
160 "//net:test_support", 161 "//net:test_support",
161 "//testing/gtest", 162 "//testing/gtest",
162 "//third_party/protobuf:protobuf_lite", 163 "//third_party/protobuf:protobuf_lite",
163 ] 164 ]
164 } 165 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698