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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 "gaia/gaia_urls.h", | 93 "gaia/gaia_urls.h", |
94 "gaia/google_service_auth_error.cc", | 94 "gaia/google_service_auth_error.cc", |
95 "gaia/google_service_auth_error.h", | 95 "gaia/google_service_auth_error.h", |
96 "gaia/identity_provider.cc", | 96 "gaia/identity_provider.cc", |
97 "gaia/identity_provider.h", | 97 "gaia/identity_provider.h", |
98 "gaia/merge_session_helper.cc", | 98 "gaia/merge_session_helper.cc", |
99 "gaia/merge_session_helper.h", | 99 "gaia/merge_session_helper.h", |
100 "gaia/oauth_request_signer.cc", | 100 "gaia/oauth_request_signer.cc", |
101 "gaia/oauth_request_signer.h", | 101 "gaia/oauth_request_signer.h", |
102 "gaia/oauth2_access_token_consumer.h", | 102 "gaia/oauth2_access_token_consumer.h", |
| 103 "gaia/oauth2_access_token_fetcher.cc", |
103 "gaia/oauth2_access_token_fetcher.h", | 104 "gaia/oauth2_access_token_fetcher.h", |
104 "gaia/oauth2_access_token_fetcher.cc", | |
105 "gaia/oauth2_access_token_fetcher_impl.cc", | 105 "gaia/oauth2_access_token_fetcher_impl.cc", |
106 "gaia/oauth2_access_token_fetcher_impl.h", | 106 "gaia/oauth2_access_token_fetcher_impl.h", |
107 "gaia/oauth2_api_call_flow.cc", | 107 "gaia/oauth2_api_call_flow.cc", |
108 "gaia/oauth2_api_call_flow.h", | 108 "gaia/oauth2_api_call_flow.h", |
109 "gaia/oauth2_mint_token_flow.cc", | 109 "gaia/oauth2_mint_token_flow.cc", |
110 "gaia/oauth2_mint_token_flow.h", | 110 "gaia/oauth2_mint_token_flow.h", |
111 "gaia/oauth2_token_service.cc", | 111 "gaia/oauth2_token_service.cc", |
112 "gaia/oauth2_token_service.h", | 112 "gaia/oauth2_token_service.h", |
| 113 "gaia/oauth2_token_service_request.cc", |
| 114 "gaia/oauth2_token_service_request.h", |
113 "gaia/ubertoken_fetcher.cc", | 115 "gaia/ubertoken_fetcher.cc", |
114 "gaia/ubertoken_fetcher.h", | 116 "gaia/ubertoken_fetcher.h", |
115 "google_api_keys.cc", | 117 "google_api_keys.cc", |
116 "google_api_keys.h", | 118 "google_api_keys.h", |
117 ] | 119 ] |
118 | 120 |
119 if (is_win) { | 121 if (is_win) { |
120 cflags = [ "/wd4267" ] # size_t -> int | 122 cflags = [ "/wd4267" ] # size_t -> int |
121 } | 123 } |
122 | 124 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 "drive/drive_api_url_generator_unittest.cc", | 233 "drive/drive_api_url_generator_unittest.cc", |
232 "drive/gdata_wapi_parser_unittest.cc", | 234 "drive/gdata_wapi_parser_unittest.cc", |
233 "drive/gdata_wapi_requests_unittest.cc", | 235 "drive/gdata_wapi_requests_unittest.cc", |
234 "drive/gdata_wapi_url_generator_unittest.cc", | 236 "drive/gdata_wapi_url_generator_unittest.cc", |
235 "drive/request_sender_unittest.cc", | 237 "drive/request_sender_unittest.cc", |
236 "drive/request_util_unittest.cc", | 238 "drive/request_util_unittest.cc", |
237 "drive/time_util_unittest.cc", | 239 "drive/time_util_unittest.cc", |
238 ] | 240 ] |
239 } | 241 } |
240 } | 242 } |
OLD | NEW |