| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |