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

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 final comments Created 5 years, 5 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 'gaia/oauth2_access_token_fetcher_impl.cc', 98 'gaia/oauth2_access_token_fetcher_impl.cc',
99 'gaia/oauth2_access_token_fetcher_impl.h', 99 'gaia/oauth2_access_token_fetcher_impl.h',
100 'gaia/oauth2_access_token_fetcher_immediate_error.cc', 100 'gaia/oauth2_access_token_fetcher_immediate_error.cc',
101 'gaia/oauth2_access_token_fetcher_immediate_error.h', 101 'gaia/oauth2_access_token_fetcher_immediate_error.h',
102 'gaia/oauth2_api_call_flow.cc', 102 'gaia/oauth2_api_call_flow.cc',
103 'gaia/oauth2_api_call_flow.h', 103 'gaia/oauth2_api_call_flow.h',
104 'gaia/oauth2_mint_token_flow.cc', 104 'gaia/oauth2_mint_token_flow.cc',
105 'gaia/oauth2_mint_token_flow.h', 105 'gaia/oauth2_mint_token_flow.h',
106 'gaia/oauth2_token_service.cc', 106 'gaia/oauth2_token_service.cc',
107 'gaia/oauth2_token_service.h', 107 'gaia/oauth2_token_service.h',
108 'gaia/oauth2_token_service_delegate.cc',
109 'gaia/oauth2_token_service_delegate.h',
108 'gaia/oauth2_token_service_request.cc', 110 'gaia/oauth2_token_service_request.cc',
109 'gaia/oauth2_token_service_request.h', 111 'gaia/oauth2_token_service_request.h',
110 'gaia/oauth_request_signer.cc', 112 'gaia/oauth_request_signer.cc',
111 'gaia/oauth_request_signer.h', 113 'gaia/oauth_request_signer.h',
112 'gaia/ubertoken_fetcher.cc', 114 'gaia/ubertoken_fetcher.cc',
113 'gaia/ubertoken_fetcher.h', 115 'gaia/ubertoken_fetcher.h',
114 'google_api_keys.cc', 116 'google_api_keys.cc',
115 'google_api_keys.h', 117 'google_api_keys.h',
116 ], 118 ],
117 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 119 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 '../base/base.gyp:base', 180 '../base/base.gyp:base',
179 '../base/base.gyp:test_support_base', 181 '../base/base.gyp:test_support_base',
180 '../net/net.gyp:net', 182 '../net/net.gyp:net',
181 '../net/net.gyp:net_test_support', 183 '../net/net.gyp:net_test_support',
182 ], 184 ],
183 'sources': [ 185 'sources': [
184 'gaia/fake_gaia.cc', 186 'gaia/fake_gaia.cc',
185 'gaia/fake_gaia.h', 187 'gaia/fake_gaia.h',
186 'gaia/fake_identity_provider.cc', 188 'gaia/fake_identity_provider.cc',
187 'gaia/fake_identity_provider.h', 189 'gaia/fake_identity_provider.h',
190 'gaia/fake_oauth2_token_service_delegate.cc',
191 'gaia/fake_oauth2_token_service_delegate.h',
188 'gaia/fake_oauth2_token_service.cc', 192 'gaia/fake_oauth2_token_service.cc',
189 'gaia/fake_oauth2_token_service.h', 193 'gaia/fake_oauth2_token_service.h',
190 'gaia/mock_url_fetcher_factory.h', 194 'gaia/mock_url_fetcher_factory.h',
191 'gaia/oauth2_token_service_test_util.cc', 195 'gaia/oauth2_token_service_test_util.cc',
192 'gaia/oauth2_token_service_test_util.h', 196 'gaia/oauth2_token_service_test_util.h',
193 ], 197 ],
194 'conditions': [ 198 'conditions': [
195 ['enable_extensions==1', { 199 ['enable_extensions==1', {
196 'sources': [ 200 'sources': [
197 'drive/dummy_auth_service.cc', 201 'drive/dummy_auth_service.cc',
198 'drive/dummy_auth_service.h', 202 'drive/dummy_auth_service.h',
199 'drive/test_util.cc', 203 'drive/test_util.cc',
200 'drive/test_util.h', 204 'drive/test_util.h',
201 ], 205 ],
202 }], 206 }],
203 ], 207 ],
204 }, 208 },
205 ], 209 ],
206 } 210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698