diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-07 04:26:37 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-07 04:26:37 +0000 |
commit | 6386cf58a85361fa20bba6ecfc23502e922b9a90 (patch) | |
tree | 06f9a9aa7e6bb8db149b53bc7489e69fa87c07fb /google_apis/google_apis.gyp | |
parent | f2857ecf6c8da488feeca9b05cf2c046ea43e02f (diff) | |
download | chromium_src-6386cf58a85361fa20bba6ecfc23502e922b9a90.zip chromium_src-6386cf58a85361fa20bba6ecfc23502e922b9a90.tar.gz chromium_src-6386cf58a85361fa20bba6ecfc23502e922b9a90.tar.bz2 |
Moving google_apis and GaiaClient to src/google_apis.
TBR=mechanicalowners@chromium.org
BUG=145584
Review URL: https://chromiumcodereview.appspot.com/10928017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155312 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'google_apis/google_apis.gyp')
-rw-r--r-- | google_apis/google_apis.gyp | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/google_apis/google_apis.gyp b/google_apis/google_apis.gyp new file mode 100644 index 0000000..b0b81e4 --- /dev/null +++ b/google_apis/google_apis.gyp @@ -0,0 +1,83 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'variables': { + 'chromium_code': 1, # Use higher warning level. + }, + 'includes': [ + '../build/win_precompile.gypi', + ], + 'targets': [ + { + 'target_name': 'google_apis', + 'type': 'static_library', + 'dependencies': [ + '../base/base.gyp:base', + '../crypto/crypto.gyp:crypto', + '../net/net.gyp:net', + ], + 'sources': [ + 'gaia/gaia_auth_consumer.cc', + 'gaia/gaia_auth_consumer.h', + 'gaia/gaia_auth_fetcher.cc', + 'gaia/gaia_auth_fetcher.h', + 'gaia/gaia_auth_util.cc', + 'gaia/gaia_auth_util.h', + 'gaia/gaia_authenticator.cc', + 'gaia/gaia_authenticator.h', + 'gaia/gaia_constants.cc', + 'gaia/gaia_constants.h', + 'gaia/gaia_oauth_client.cc', + 'gaia/gaia_oauth_client.h', + 'gaia/gaia_switches.cc', + 'gaia/gaia_switches.h', + 'gaia/gaia_urls.cc', + 'gaia/gaia_urls.h', + 'gaia/google_service_auth_error.cc', + 'gaia/google_service_auth_error.h', + 'gaia/oauth_request_signer.cc', + 'gaia/oauth_request_signer.h', + 'gaia/oauth2_access_token_consumer.h', + 'gaia/oauth2_access_token_fetcher.cc', + 'gaia/oauth2_access_token_fetcher.h', + 'gaia/oauth2_api_call_flow.cc', + 'gaia/oauth2_api_call_flow.h', + 'gaia/oauth2_mint_token_consumer.h', + 'gaia/oauth2_mint_token_fetcher.cc', + 'gaia/oauth2_mint_token_fetcher.h', + 'gaia/oauth2_mint_token_flow.cc', + 'gaia/oauth2_mint_token_flow.h', + 'gaia/oauth2_revocation_consumer.h', + 'gaia/oauth2_revocation_fetcher.cc', + 'gaia/oauth2_revocation_fetcher.h', + 'google_api_keys.cc', + 'google_api_keys.h', + ], + }, + { + 'target_name': 'google_apis_unittests', + 'type': 'static_library', + 'dependencies': [ + '../base/base.gyp:base', + '../testing/gmock.gyp:gmock', + '../testing/gtest.gyp:gtest', + ], + 'sources': [ + 'gaia/mock_url_fetcher_factory.h', + 'gaia/gaia_auth_fetcher_unittest.cc', + 'gaia/gaia_auth_util_unittest.cc', + 'gaia/gaia_authenticator_unittest.cc', + 'gaia/gaia_oauth_client_unittest.cc', + 'gaia/google_service_auth_error_unittest.cc', + 'gaia/oauth_request_signer_unittest.cc', + 'gaia/oauth2_access_token_fetcher_unittest.cc', + 'gaia/oauth2_api_call_flow_unittest.cc', + 'gaia/oauth2_mint_token_fetcher_unittest.cc', + 'gaia/oauth2_mint_token_flow_unittest.cc', + 'gaia/oauth2_revocation_fetcher_unittest.cc', + ], + }, + ], +} |