OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'chromium_code': 1, # Use higher warning level. |
| 8 }, |
| 9 'includes': [ |
| 10 '../build/win_precompile.gypi', |
| 11 ], |
| 12 'targets': [ |
| 13 { |
| 14 'target_name': 'google_apis', |
| 15 'type': 'static_library', |
| 16 'dependencies': [ |
| 17 '../base/base.gyp:base', |
| 18 '../crypto/crypto.gyp:crypto', |
| 19 '../net/net.gyp:net', |
| 20 ], |
| 21 'sources': [ |
| 22 'gaia/gaia_auth_consumer.cc', |
| 23 'gaia/gaia_auth_consumer.h', |
| 24 'gaia/gaia_auth_fetcher.cc', |
| 25 'gaia/gaia_auth_fetcher.h', |
| 26 'gaia/gaia_auth_util.cc', |
| 27 'gaia/gaia_auth_util.h', |
| 28 'gaia/gaia_authenticator.cc', |
| 29 'gaia/gaia_authenticator.h', |
| 30 'gaia/gaia_constants.cc', |
| 31 'gaia/gaia_constants.h', |
| 32 'gaia/gaia_oauth_client.cc', |
| 33 'gaia/gaia_oauth_client.h', |
| 34 'gaia/gaia_switches.cc', |
| 35 'gaia/gaia_switches.h', |
| 36 'gaia/gaia_urls.cc', |
| 37 'gaia/gaia_urls.h', |
| 38 'gaia/google_service_auth_error.cc', |
| 39 'gaia/google_service_auth_error.h', |
| 40 'gaia/oauth_request_signer.cc', |
| 41 'gaia/oauth_request_signer.h', |
| 42 'gaia/oauth2_access_token_consumer.h', |
| 43 'gaia/oauth2_access_token_fetcher.cc', |
| 44 'gaia/oauth2_access_token_fetcher.h', |
| 45 'gaia/oauth2_api_call_flow.cc', |
| 46 'gaia/oauth2_api_call_flow.h', |
| 47 'gaia/oauth2_mint_token_consumer.h', |
| 48 'gaia/oauth2_mint_token_fetcher.cc', |
| 49 'gaia/oauth2_mint_token_fetcher.h', |
| 50 'gaia/oauth2_mint_token_flow.cc', |
| 51 'gaia/oauth2_mint_token_flow.h', |
| 52 'gaia/oauth2_revocation_consumer.h', |
| 53 'gaia/oauth2_revocation_fetcher.cc', |
| 54 'gaia/oauth2_revocation_fetcher.h', |
| 55 'google_api_keys.cc', |
| 56 'google_api_keys.h', |
| 57 ], |
| 58 }, |
| 59 { |
| 60 'target_name': 'google_apis_unittests', |
| 61 'type': 'static_library', |
| 62 'dependencies': [ |
| 63 '../base/base.gyp:base', |
| 64 '../testing/gmock.gyp:gmock', |
| 65 '../testing/gtest.gyp:gtest', |
| 66 ], |
| 67 'sources': [ |
| 68 'gaia/mock_url_fetcher_factory.h', |
| 69 'gaia/gaia_auth_fetcher_unittest.cc', |
| 70 'gaia/gaia_auth_util_unittest.cc', |
| 71 'gaia/gaia_authenticator_unittest.cc', |
| 72 'gaia/gaia_oauth_client_unittest.cc', |
| 73 'gaia/google_service_auth_error_unittest.cc', |
| 74 'gaia/oauth_request_signer_unittest.cc', |
| 75 'gaia/oauth2_access_token_fetcher_unittest.cc', |
| 76 'gaia/oauth2_api_call_flow_unittest.cc', |
| 77 'gaia/oauth2_mint_token_fetcher_unittest.cc', |
| 78 'gaia/oauth2_mint_token_flow_unittest.cc', |
| 79 'gaia/oauth2_revocation_fetcher_unittest.cc', |
| 80 ], |
| 81 }, |
| 82 ], |
| 83 } |
OLD | NEW |