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

Side by Side Diff: google_apis/BUILD.gn

Issue 1839803002: Remove net & url small, iOS ICU alternatives, unit tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolved rebase conflicts Created 4 years, 8 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 } 175 }
176 } 176 }
177 } 177 }
178 178
179 google_apis_tmpl("google_apis") { 179 google_apis_tmpl("google_apis") {
180 deps = [ 180 deps = [
181 "//net", 181 "//net",
182 ] 182 ]
183 } 183 }
184 184
185 if (is_android) {
186 google_apis_tmpl("google_apis_small") {
187 deps = [
188 "//net:net_small",
189 ]
190 }
191 }
192
193 source_set("test_support") { 185 source_set("test_support") {
194 testonly = true 186 testonly = true
195 sources = [ 187 sources = [
196 "gaia/fake_gaia.cc", 188 "gaia/fake_gaia.cc",
197 "gaia/fake_gaia.h", 189 "gaia/fake_gaia.h",
198 "gaia/fake_identity_provider.cc", 190 "gaia/fake_identity_provider.cc",
199 "gaia/fake_identity_provider.h", 191 "gaia/fake_identity_provider.h",
200 "gaia/fake_oauth2_token_service.cc", 192 "gaia/fake_oauth2_token_service.cc",
201 "gaia/fake_oauth2_token_service.h", 193 "gaia/fake_oauth2_token_service.h",
202 "gaia/fake_oauth2_token_service_delegate.cc", 194 "gaia/fake_oauth2_token_service_delegate.cc",
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 "drive/base_requests_unittest.cc", 264 "drive/base_requests_unittest.cc",
273 "drive/drive_api_parser_unittest.cc", 265 "drive/drive_api_parser_unittest.cc",
274 "drive/drive_api_requests_unittest.cc", 266 "drive/drive_api_requests_unittest.cc",
275 "drive/drive_api_url_generator_unittest.cc", 267 "drive/drive_api_url_generator_unittest.cc",
276 "drive/request_sender_unittest.cc", 268 "drive/request_sender_unittest.cc",
277 "drive/request_util_unittest.cc", 269 "drive/request_util_unittest.cc",
278 "drive/time_util_unittest.cc", 270 "drive/time_util_unittest.cc",
279 ] 271 ]
280 } 272 }
281 } 273 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698