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

Side by Side Diff: google_apis/BUILD.gn

Issue 881403003: Rename gdata_errorcode.h to drive_api_error_codes.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typos in BUILD.gn Created 5 years, 10 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 ] 137 ]
138 138
139 if (enable_extensions) { 139 if (enable_extensions) {
140 sources += [ 140 sources += [
141 "drive/auth_service.cc", 141 "drive/auth_service.cc",
142 "drive/auth_service.h", 142 "drive/auth_service.h",
143 "drive/auth_service_interface.h", 143 "drive/auth_service_interface.h",
144 "drive/auth_service_observer.h", 144 "drive/auth_service_observer.h",
145 "drive/base_requests.cc", 145 "drive/base_requests.cc",
146 "drive/base_requests.h", 146 "drive/base_requests.h",
147 "drive/drive_api_error_codes.cc",
148 "drive/drive_api_error_codes.h",
147 "drive/drive_api_parser.cc", 149 "drive/drive_api_parser.cc",
148 "drive/drive_api_parser.h", 150 "drive/drive_api_parser.h",
149 "drive/drive_api_requests.cc", 151 "drive/drive_api_requests.cc",
150 "drive/drive_api_requests.h", 152 "drive/drive_api_requests.h",
151 "drive/drive_api_url_generator.cc", 153 "drive/drive_api_url_generator.cc",
152 "drive/drive_api_url_generator.h", 154 "drive/drive_api_url_generator.h",
153 "drive/drive_common_callbacks.h", 155 "drive/drive_common_callbacks.h",
154 "drive/gdata_errorcode.cc",
155 "drive/gdata_errorcode.h",
156 "drive/request_sender.cc", 156 "drive/request_sender.cc",
157 "drive/request_sender.h", 157 "drive/request_sender.h",
158 "drive/request_util.cc", 158 "drive/request_util.cc",
159 "drive/request_util.h", 159 "drive/request_util.h",
160 "drive/task_util.cc", 160 "drive/task_util.cc",
161 "drive/task_util.h", 161 "drive/task_util.h",
162 "drive/time_util.cc", 162 "drive/time_util.cc",
163 "drive/time_util.h", 163 "drive/time_util.h",
164 ] 164 ]
165 } 165 }
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 "drive/base_requests_unittest.cc", 229 "drive/base_requests_unittest.cc",
230 "drive/drive_api_parser_unittest.cc", 230 "drive/drive_api_parser_unittest.cc",
231 "drive/drive_api_requests_unittest.cc", 231 "drive/drive_api_requests_unittest.cc",
232 "drive/drive_api_url_generator_unittest.cc", 232 "drive/drive_api_url_generator_unittest.cc",
233 "drive/request_sender_unittest.cc", 233 "drive/request_sender_unittest.cc",
234 "drive/request_util_unittest.cc", 234 "drive/request_util_unittest.cc",
235 "drive/time_util_unittest.cc", 235 "drive/time_util_unittest.cc",
236 ] 236 ]
237 } 237 }
238 } 238 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698