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 | 6 |
7 declare_args() { | 7 declare_args() { |
8 # You can set the variable 'use_official_google_api_keys' to true | 8 # You can set the variable 'use_official_google_api_keys' to true |
9 # to use the Google-internal file containing official API keys | 9 # to use the Google-internal file containing official API keys |
10 # for Google Chrome even in a developer build. Setting this | 10 # for Google Chrome even in a developer build. Setting this |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 "drive/request_util.h", | 162 "drive/request_util.h", |
163 "drive/task_util.cc", | 163 "drive/task_util.cc", |
164 "drive/task_util.h", | 164 "drive/task_util.h", |
165 "drive/time_util.cc", | 165 "drive/time_util.cc", |
166 "drive/time_util.h", | 166 "drive/time_util.h", |
167 ] | 167 ] |
168 } | 168 } |
169 } | 169 } |
170 | 170 |
171 source_set("test_support") { | 171 source_set("test_support") { |
| 172 testonly = true |
172 sources = [ | 173 sources = [ |
173 "gaia/fake_gaia.cc", | 174 "gaia/fake_gaia.cc", |
174 "gaia/fake_gaia.h", | 175 "gaia/fake_gaia.h", |
175 "gaia/fake_identity_provider.cc", | 176 "gaia/fake_identity_provider.cc", |
176 "gaia/fake_identity_provider.h", | 177 "gaia/fake_identity_provider.h", |
177 "gaia/fake_oauth2_token_service.cc", | 178 "gaia/fake_oauth2_token_service.cc", |
178 "gaia/fake_oauth2_token_service.h", | 179 "gaia/fake_oauth2_token_service.h", |
179 "gaia/mock_url_fetcher_factory.h", | 180 "gaia/mock_url_fetcher_factory.h", |
180 "gaia/oauth2_token_service_test_util.cc", | 181 "gaia/oauth2_token_service_test_util.cc", |
181 "gaia/oauth2_token_service_test_util.h", | 182 "gaia/oauth2_token_service_test_util.h", |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 "drive/drive_api_url_generator_unittest.cc", | 236 "drive/drive_api_url_generator_unittest.cc", |
236 "drive/gdata_wapi_parser_unittest.cc", | 237 "drive/gdata_wapi_parser_unittest.cc", |
237 "drive/gdata_wapi_requests_unittest.cc", | 238 "drive/gdata_wapi_requests_unittest.cc", |
238 "drive/gdata_wapi_url_generator_unittest.cc", | 239 "drive/gdata_wapi_url_generator_unittest.cc", |
239 "drive/request_sender_unittest.cc", | 240 "drive/request_sender_unittest.cc", |
240 "drive/request_util_unittest.cc", | 241 "drive/request_util_unittest.cc", |
241 "drive/time_util_unittest.cc", | 242 "drive/time_util_unittest.cc", |
242 ] | 243 ] |
243 } | 244 } |
244 } | 245 } |
OLD | NEW |