OLD | NEW |
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 'gaia/oauth_request_signer.h', | 117 'gaia/oauth_request_signer.h', |
118 'gaia/oauth2_access_token_consumer.h', | 118 'gaia/oauth2_access_token_consumer.h', |
119 'gaia/oauth2_access_token_fetcher.cc', | 119 'gaia/oauth2_access_token_fetcher.cc', |
120 'gaia/oauth2_access_token_fetcher.h', | 120 'gaia/oauth2_access_token_fetcher.h', |
121 'gaia/oauth2_api_call_flow.cc', | 121 'gaia/oauth2_api_call_flow.cc', |
122 'gaia/oauth2_api_call_flow.h', | 122 'gaia/oauth2_api_call_flow.h', |
123 'gaia/oauth2_mint_token_flow.cc', | 123 'gaia/oauth2_mint_token_flow.cc', |
124 'gaia/oauth2_mint_token_flow.h', | 124 'gaia/oauth2_mint_token_flow.h', |
125 'gaia/oauth2_token_service.cc', | 125 'gaia/oauth2_token_service.cc', |
126 'gaia/oauth2_token_service.h', | 126 'gaia/oauth2_token_service.h', |
| 127 'gaia/ubertoken_fetcher.cc', |
| 128 'gaia/ubertoken_fetcher.h', |
127 'google_api_keys.cc', | 129 'google_api_keys.cc', |
128 'google_api_keys.h', | 130 'google_api_keys.h', |
129 ], | 131 ], |
130 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 132 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
131 'msvs_disabled_warnings': [4267, ], | 133 'msvs_disabled_warnings': [4267, ], |
132 }, | 134 }, |
133 { | 135 { |
134 'target_name': 'google_apis_unittests', | 136 'target_name': 'google_apis_unittests', |
135 'type': 'executable', | 137 'type': 'executable', |
136 'dependencies': [ | 138 'dependencies': [ |
(...skipping 25 matching lines...) Expand all Loading... |
162 'drive/time_util_unittest.cc', | 164 'drive/time_util_unittest.cc', |
163 'gaia/gaia_auth_fetcher_unittest.cc', | 165 'gaia/gaia_auth_fetcher_unittest.cc', |
164 'gaia/gaia_auth_util_unittest.cc', | 166 'gaia/gaia_auth_util_unittest.cc', |
165 'gaia/gaia_oauth_client_unittest.cc', | 167 'gaia/gaia_oauth_client_unittest.cc', |
166 'gaia/google_service_auth_error_unittest.cc', | 168 'gaia/google_service_auth_error_unittest.cc', |
167 'gaia/oauth_request_signer_unittest.cc', | 169 'gaia/oauth_request_signer_unittest.cc', |
168 'gaia/oauth2_access_token_fetcher_unittest.cc', | 170 'gaia/oauth2_access_token_fetcher_unittest.cc', |
169 'gaia/oauth2_api_call_flow_unittest.cc', | 171 'gaia/oauth2_api_call_flow_unittest.cc', |
170 'gaia/oauth2_mint_token_flow_unittest.cc', | 172 'gaia/oauth2_mint_token_flow_unittest.cc', |
171 'gaia/oauth2_token_service_unittest.cc', | 173 'gaia/oauth2_token_service_unittest.cc', |
| 174 'gaia/ubertoken_fetcher_unittest.cc', |
172 ], | 175 ], |
173 'conditions': [ | 176 'conditions': [ |
174 ['OS=="android"', { | 177 ['OS=="android"', { |
175 'sources!': [ | 178 'sources!': [ |
176 'drive/base_requests_server_unittest.cc', | 179 'drive/base_requests_server_unittest.cc', |
177 'drive/drive_api_parser_unittest.cc', | 180 'drive/drive_api_parser_unittest.cc', |
178 'drive/drive_api_requests_unittest.cc', | 181 'drive/drive_api_requests_unittest.cc', |
179 'drive/gdata_wapi_parser_unittest.cc', | 182 'drive/gdata_wapi_parser_unittest.cc', |
180 'drive/gdata_wapi_requests_unittest.cc', | 183 'drive/gdata_wapi_requests_unittest.cc', |
181 ], | 184 ], |
(...skipping 15 matching lines...) Expand all Loading... |
197 '../net/net.gyp:net', | 200 '../net/net.gyp:net', |
198 '../net/net.gyp:net_test_support', | 201 '../net/net.gyp:net_test_support', |
199 ], | 202 ], |
200 'sources': [ | 203 'sources': [ |
201 'drive/dummy_auth_service.cc', | 204 'drive/dummy_auth_service.cc', |
202 'drive/dummy_auth_service.h', | 205 'drive/dummy_auth_service.h', |
203 'drive/test_util.cc', | 206 'drive/test_util.cc', |
204 'drive/test_util.h', | 207 'drive/test_util.h', |
205 'gaia/fake_gaia.cc', | 208 'gaia/fake_gaia.cc', |
206 'gaia/fake_gaia.h', | 209 'gaia/fake_gaia.h', |
| 210 'gaia/fake_oauth2_token_service.cc', |
| 211 'gaia/fake_oauth2_token_service.h', |
207 'gaia/mock_url_fetcher_factory.h', | 212 'gaia/mock_url_fetcher_factory.h', |
208 'gaia/oauth2_token_service_test_util.cc', | 213 'gaia/oauth2_token_service_test_util.cc', |
209 'gaia/oauth2_token_service_test_util.h', | 214 'gaia/oauth2_token_service_test_util.h', |
210 ], | 215 ], |
211 }, | 216 }, |
212 ], | 217 ], |
213 } | 218 } |
OLD | NEW |