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

Side by Side Diff: google_apis/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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 declare_args() { 8 declare_args() {
9 # You can set the variable 'use_official_google_api_keys' to true 9 # You can set the variable 'use_official_google_api_keys' to true
10 # to use the Google-internal file containing official API keys 10 # to use the Google-internal file containing official API keys
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 ] 126 ]
127 127
128 configs += [ 128 configs += [
129 ":key_defines", 129 ":key_defines",
130 "//build/config/compiler:no_size_t_to_int_warning", 130 "//build/config/compiler:no_size_t_to_int_warning",
131 ] 131 ]
132 132
133 deps = [ 133 deps = [
134 "//base", 134 "//base",
135 "//base/third_party/dynamic_annotations", 135 "//base/third_party/dynamic_annotations",
136 "//components/data_use_measurement/core",
136 "//crypto", 137 "//crypto",
137 "//net", 138 "//net",
138 "//third_party/libxml", 139 "//third_party/libxml",
139 ] 140 ]
140 141
141 if (enable_extensions) { 142 if (enable_extensions) {
142 sources += [ 143 sources += [
143 "drive/auth_service.cc", 144 "drive/auth_service.cc",
144 "drive/auth_service.h", 145 "drive/auth_service.h",
145 "drive/auth_service_interface.h", 146 "drive/auth_service_interface.h",
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 "drive/base_requests_unittest.cc", 251 "drive/base_requests_unittest.cc",
251 "drive/drive_api_parser_unittest.cc", 252 "drive/drive_api_parser_unittest.cc",
252 "drive/drive_api_requests_unittest.cc", 253 "drive/drive_api_requests_unittest.cc",
253 "drive/drive_api_url_generator_unittest.cc", 254 "drive/drive_api_url_generator_unittest.cc",
254 "drive/request_sender_unittest.cc", 255 "drive/request_sender_unittest.cc",
255 "drive/request_util_unittest.cc", 256 "drive/request_util_unittest.cc",
256 "drive/time_util_unittest.cc", 257 "drive/time_util_unittest.cc",
257 ] 258 ]
258 } 259 }
259 } 260 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698