Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(317)

Side by Side Diff: google_apis/google_apis.gyp

Issue 299943003: Refactor ProfileOAuth2TokenServiceRequest into OAuth2TokenServiceRequest (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update comments referring to ProfileOAuth2TokenServiceRequest. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 'gaia/oauth2_access_token_fetcher.h', 121 'gaia/oauth2_access_token_fetcher.h',
122 'gaia/oauth2_access_token_fetcher.cc', 122 'gaia/oauth2_access_token_fetcher.cc',
123 'gaia/oauth2_access_token_fetcher_impl.cc', 123 'gaia/oauth2_access_token_fetcher_impl.cc',
124 'gaia/oauth2_access_token_fetcher_impl.h', 124 'gaia/oauth2_access_token_fetcher_impl.h',
125 'gaia/oauth2_api_call_flow.cc', 125 'gaia/oauth2_api_call_flow.cc',
126 'gaia/oauth2_api_call_flow.h', 126 'gaia/oauth2_api_call_flow.h',
127 'gaia/oauth2_mint_token_flow.cc', 127 'gaia/oauth2_mint_token_flow.cc',
128 'gaia/oauth2_mint_token_flow.h', 128 'gaia/oauth2_mint_token_flow.h',
129 'gaia/oauth2_token_service.cc', 129 'gaia/oauth2_token_service.cc',
130 'gaia/oauth2_token_service.h', 130 'gaia/oauth2_token_service.h',
131 'gaia/oauth2_token_service_request.cc',
132 'gaia/oauth2_token_service_request.h',
131 'gaia/ubertoken_fetcher.cc', 133 'gaia/ubertoken_fetcher.cc',
132 'gaia/ubertoken_fetcher.h', 134 'gaia/ubertoken_fetcher.h',
133 'google_api_keys.cc', 135 'google_api_keys.cc',
134 'google_api_keys.h', 136 'google_api_keys.h',
135 ], 137 ],
136 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 138 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
137 'msvs_disabled_warnings': [4267, ], 139 'msvs_disabled_warnings': [4267, ],
138 }, 140 },
139 { 141 {
140 'target_name': 'google_apis_unittests', 142 'target_name': 'google_apis_unittests',
(...skipping 27 matching lines...) Expand all
168 'drive/time_util_unittest.cc', 170 'drive/time_util_unittest.cc',
169 'gaia/gaia_auth_fetcher_unittest.cc', 171 'gaia/gaia_auth_fetcher_unittest.cc',
170 'gaia/gaia_auth_util_unittest.cc', 172 'gaia/gaia_auth_util_unittest.cc',
171 'gaia/gaia_oauth_client_unittest.cc', 173 'gaia/gaia_oauth_client_unittest.cc',
172 'gaia/google_service_auth_error_unittest.cc', 174 'gaia/google_service_auth_error_unittest.cc',
173 'gaia/merge_session_helper_unittest.cc', 175 'gaia/merge_session_helper_unittest.cc',
174 'gaia/oauth_request_signer_unittest.cc', 176 'gaia/oauth_request_signer_unittest.cc',
175 'gaia/oauth2_access_token_fetcher_impl_unittest.cc', 177 'gaia/oauth2_access_token_fetcher_impl_unittest.cc',
176 'gaia/oauth2_api_call_flow_unittest.cc', 178 'gaia/oauth2_api_call_flow_unittest.cc',
177 'gaia/oauth2_mint_token_flow_unittest.cc', 179 'gaia/oauth2_mint_token_flow_unittest.cc',
180 'gaia/oauth2_token_service_request_unittest.cc',
178 'gaia/oauth2_token_service_unittest.cc', 181 'gaia/oauth2_token_service_unittest.cc',
179 'gaia/ubertoken_fetcher_unittest.cc', 182 'gaia/ubertoken_fetcher_unittest.cc',
180 ], 183 ],
181 'conditions': [ 184 'conditions': [
182 ['OS=="android"', { 185 ['OS=="android"', {
183 'sources!': [ 186 'sources!': [
184 'drive/base_requests_server_unittest.cc', 187 'drive/base_requests_server_unittest.cc',
185 'drive/drive_api_parser_unittest.cc', 188 'drive/drive_api_parser_unittest.cc',
186 'drive/drive_api_requests_unittest.cc', 189 'drive/drive_api_requests_unittest.cc',
187 'drive/gdata_wapi_parser_unittest.cc', 190 'drive/gdata_wapi_parser_unittest.cc',
(...skipping 28 matching lines...) Expand all
216 'gaia/fake_identity_provider.h', 219 'gaia/fake_identity_provider.h',
217 'gaia/fake_oauth2_token_service.cc', 220 'gaia/fake_oauth2_token_service.cc',
218 'gaia/fake_oauth2_token_service.h', 221 'gaia/fake_oauth2_token_service.h',
219 'gaia/mock_url_fetcher_factory.h', 222 'gaia/mock_url_fetcher_factory.h',
220 'gaia/oauth2_token_service_test_util.cc', 223 'gaia/oauth2_token_service_test_util.cc',
221 'gaia/oauth2_token_service_test_util.h', 224 'gaia/oauth2_token_service_test_util.h',
222 ], 225 ],
223 }, 226 },
224 ], 227 ],
225 } 228 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698