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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 } | 169 } |
168 } | 170 } |
169 | 171 |
170 source_set("test_support") { | 172 source_set("test_support") { |
171 testonly = true | 173 testonly = true |
172 sources = [ | 174 sources = [ |
173 "gaia/fake_gaia.cc", | 175 "gaia/fake_gaia.cc", |
174 "gaia/fake_gaia.h", | 176 "gaia/fake_gaia.h", |
175 "gaia/fake_identity_provider.cc", | 177 "gaia/fake_identity_provider.cc", |
176 "gaia/fake_identity_provider.h", | 178 "gaia/fake_identity_provider.h", |
| 179 "gaia/fake_oauth2_token_service_delegate.cc", |
| 180 "gaia/fake_oauth2_token_service_delegate.h", |
177 "gaia/fake_oauth2_token_service.cc", | 181 "gaia/fake_oauth2_token_service.cc", |
178 "gaia/fake_oauth2_token_service.h", | 182 "gaia/fake_oauth2_token_service.h", |
179 "gaia/mock_url_fetcher_factory.h", | 183 "gaia/mock_url_fetcher_factory.h", |
180 "gaia/oauth2_token_service_test_util.cc", | 184 "gaia/oauth2_token_service_test_util.cc", |
181 "gaia/oauth2_token_service_test_util.h", | 185 "gaia/oauth2_token_service_test_util.h", |
182 ] | 186 ] |
183 | 187 |
184 public_deps = [ | 188 public_deps = [ |
185 "//base", | 189 "//base", |
186 "//base/test:test_support", | 190 "//base/test:test_support", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 "drive/base_requests_unittest.cc", | 237 "drive/base_requests_unittest.cc", |
234 "drive/drive_api_parser_unittest.cc", | 238 "drive/drive_api_parser_unittest.cc", |
235 "drive/drive_api_requests_unittest.cc", | 239 "drive/drive_api_requests_unittest.cc", |
236 "drive/drive_api_url_generator_unittest.cc", | 240 "drive/drive_api_url_generator_unittest.cc", |
237 "drive/request_sender_unittest.cc", | 241 "drive/request_sender_unittest.cc", |
238 "drive/request_util_unittest.cc", | 242 "drive/request_util_unittest.cc", |
239 "drive/time_util_unittest.cc", | 243 "drive/time_util_unittest.cc", |
240 ] | 244 ] |
241 } | 245 } |
242 } | 246 } |
OLD | NEW |