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

Side by Side Diff: google_apis/google_apis.gyp

Issue 1143323005: Refactor AO2TS to make it easier to componentize. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address roger's comments Created 5 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
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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 'gaia/oauth2_access_token_fetcher_impl.cc', 96 'gaia/oauth2_access_token_fetcher_impl.cc',
97 'gaia/oauth2_access_token_fetcher_impl.h', 97 'gaia/oauth2_access_token_fetcher_impl.h',
98 'gaia/oauth2_access_token_fetcher_immediate_error.cc', 98 'gaia/oauth2_access_token_fetcher_immediate_error.cc',
99 'gaia/oauth2_access_token_fetcher_immediate_error.h', 99 'gaia/oauth2_access_token_fetcher_immediate_error.h',
100 'gaia/oauth2_api_call_flow.cc', 100 'gaia/oauth2_api_call_flow.cc',
101 'gaia/oauth2_api_call_flow.h', 101 'gaia/oauth2_api_call_flow.h',
102 'gaia/oauth2_mint_token_flow.cc', 102 'gaia/oauth2_mint_token_flow.cc',
103 'gaia/oauth2_mint_token_flow.h', 103 'gaia/oauth2_mint_token_flow.h',
104 'gaia/oauth2_token_service.cc', 104 'gaia/oauth2_token_service.cc',
105 'gaia/oauth2_token_service.h', 105 'gaia/oauth2_token_service.h',
106 'gaia/oauth2_token_service_delegate.cc',
107 'gaia/oauth2_token_service_delegate.h',
106 'gaia/oauth2_token_service_request.cc', 108 'gaia/oauth2_token_service_request.cc',
107 'gaia/oauth2_token_service_request.h', 109 'gaia/oauth2_token_service_request.h',
108 'gaia/oauth_request_signer.cc', 110 'gaia/oauth_request_signer.cc',
109 'gaia/oauth_request_signer.h', 111 'gaia/oauth_request_signer.h',
110 'gaia/ubertoken_fetcher.cc', 112 'gaia/ubertoken_fetcher.cc',
111 'gaia/ubertoken_fetcher.h', 113 'gaia/ubertoken_fetcher.h',
112 'google_api_keys.cc', 114 'google_api_keys.cc',
113 'google_api_keys.h', 115 'google_api_keys.h',
114 ], 116 ],
115 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 117 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 '../base/base.gyp:base', 177 '../base/base.gyp:base',
176 '../base/base.gyp:test_support_base', 178 '../base/base.gyp:test_support_base',
177 '../net/net.gyp:net', 179 '../net/net.gyp:net',
178 '../net/net.gyp:net_test_support', 180 '../net/net.gyp:net_test_support',
179 ], 181 ],
180 'sources': [ 182 'sources': [
181 'gaia/fake_gaia.cc', 183 'gaia/fake_gaia.cc',
182 'gaia/fake_gaia.h', 184 'gaia/fake_gaia.h',
183 'gaia/fake_identity_provider.cc', 185 'gaia/fake_identity_provider.cc',
184 'gaia/fake_identity_provider.h', 186 'gaia/fake_identity_provider.h',
187 'gaia/fake_oauth2_token_service_delegate.cc',
188 'gaia/fake_oauth2_token_service_delegate.h',
185 'gaia/fake_oauth2_token_service.cc', 189 'gaia/fake_oauth2_token_service.cc',
186 'gaia/fake_oauth2_token_service.h', 190 'gaia/fake_oauth2_token_service.h',
187 'gaia/mock_url_fetcher_factory.h', 191 'gaia/mock_url_fetcher_factory.h',
188 'gaia/oauth2_token_service_test_util.cc', 192 'gaia/oauth2_token_service_test_util.cc',
189 'gaia/oauth2_token_service_test_util.h', 193 'gaia/oauth2_token_service_test_util.h',
190 ], 194 ],
191 'conditions': [ 195 'conditions': [
192 ['enable_extensions==1', { 196 ['enable_extensions==1', {
193 'sources': [ 197 'sources': [
194 'drive/dummy_auth_service.cc', 198 'drive/dummy_auth_service.cc',
195 'drive/dummy_auth_service.h', 199 'drive/dummy_auth_service.h',
196 'drive/test_util.cc', 200 'drive/test_util.cc',
197 'drive/test_util.h', 201 'drive/test_util.h',
198 ], 202 ],
199 }], 203 }],
200 ], 204 ],
201 }, 205 },
202 ], 206 ],
203 } 207 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698