| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "gaia/oauth2_access_token_fetcher_immediate_error.cc", | 106 "gaia/oauth2_access_token_fetcher_immediate_error.cc", |
| 107 "gaia/oauth2_access_token_fetcher_immediate_error.h", | 107 "gaia/oauth2_access_token_fetcher_immediate_error.h", |
| 108 "gaia/oauth2_access_token_fetcher_impl.cc", | 108 "gaia/oauth2_access_token_fetcher_impl.cc", |
| 109 "gaia/oauth2_access_token_fetcher_impl.h", | 109 "gaia/oauth2_access_token_fetcher_impl.h", |
| 110 "gaia/oauth2_api_call_flow.cc", | 110 "gaia/oauth2_api_call_flow.cc", |
| 111 "gaia/oauth2_api_call_flow.h", | 111 "gaia/oauth2_api_call_flow.h", |
| 112 "gaia/oauth2_mint_token_flow.cc", | 112 "gaia/oauth2_mint_token_flow.cc", |
| 113 "gaia/oauth2_mint_token_flow.h", | 113 "gaia/oauth2_mint_token_flow.h", |
| 114 "gaia/oauth2_token_service.cc", | 114 "gaia/oauth2_token_service.cc", |
| 115 "gaia/oauth2_token_service.h", | 115 "gaia/oauth2_token_service.h", |
| 116 "gaia/oauth2_token_service_delegate.cc", |
| 117 "gaia/oauth2_token_service_delegate.h", |
| 116 "gaia/oauth2_token_service_request.cc", | 118 "gaia/oauth2_token_service_request.cc", |
| 117 "gaia/oauth2_token_service_request.h", | 119 "gaia/oauth2_token_service_request.h", |
| 118 "gaia/oauth_request_signer.cc", | 120 "gaia/oauth_request_signer.cc", |
| 119 "gaia/oauth_request_signer.h", | 121 "gaia/oauth_request_signer.h", |
| 120 "gaia/ubertoken_fetcher.cc", | 122 "gaia/ubertoken_fetcher.cc", |
| 121 "gaia/ubertoken_fetcher.h", | 123 "gaia/ubertoken_fetcher.h", |
| 122 "google_api_keys.cc", | 124 "google_api_keys.cc", |
| 123 "google_api_keys.h", | 125 "google_api_keys.h", |
| 124 ] | 126 ] |
| 125 | 127 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 } | 167 } |
| 166 } | 168 } |
| 167 | 169 |
| 168 source_set("test_support") { | 170 source_set("test_support") { |
| 169 testonly = true | 171 testonly = true |
| 170 sources = [ | 172 sources = [ |
| 171 "gaia/fake_gaia.cc", | 173 "gaia/fake_gaia.cc", |
| 172 "gaia/fake_gaia.h", | 174 "gaia/fake_gaia.h", |
| 173 "gaia/fake_identity_provider.cc", | 175 "gaia/fake_identity_provider.cc", |
| 174 "gaia/fake_identity_provider.h", | 176 "gaia/fake_identity_provider.h", |
| 177 "gaia/fake_oauth2_token_service_delegate.cc", |
| 178 "gaia/fake_oauth2_token_service_delegate.h", |
| 175 "gaia/fake_oauth2_token_service.cc", | 179 "gaia/fake_oauth2_token_service.cc", |
| 176 "gaia/fake_oauth2_token_service.h", | 180 "gaia/fake_oauth2_token_service.h", |
| 177 "gaia/mock_url_fetcher_factory.h", | 181 "gaia/mock_url_fetcher_factory.h", |
| 178 "gaia/oauth2_token_service_test_util.cc", | 182 "gaia/oauth2_token_service_test_util.cc", |
| 179 "gaia/oauth2_token_service_test_util.h", | 183 "gaia/oauth2_token_service_test_util.h", |
| 180 ] | 184 ] |
| 181 | 185 |
| 182 public_deps = [ | 186 public_deps = [ |
| 183 "//base", | 187 "//base", |
| 184 "//base/test:test_support", | 188 "//base/test:test_support", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "drive/base_requests_unittest.cc", | 235 "drive/base_requests_unittest.cc", |
| 232 "drive/drive_api_parser_unittest.cc", | 236 "drive/drive_api_parser_unittest.cc", |
| 233 "drive/drive_api_requests_unittest.cc", | 237 "drive/drive_api_requests_unittest.cc", |
| 234 "drive/drive_api_url_generator_unittest.cc", | 238 "drive/drive_api_url_generator_unittest.cc", |
| 235 "drive/request_sender_unittest.cc", | 239 "drive/request_sender_unittest.cc", |
| 236 "drive/request_util_unittest.cc", | 240 "drive/request_util_unittest.cc", |
| 237 "drive/time_util_unittest.cc", | 241 "drive/time_util_unittest.cc", |
| 238 ] | 242 ] |
| 239 } | 243 } |
| 240 } | 244 } |
| OLD | NEW |