diff options
author | msarda@chromium.org <msarda@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-10 16:39:19 +0000 |
---|---|---|
committer | msarda@chromium.org <msarda@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-10 16:39:19 +0000 |
commit | e72a5906fbef55afa52203a0bc2f7868b4601526 (patch) | |
tree | 53740be871251250759ad8940ceb48282b498314 /ios/provider | |
parent | 1cf6ad926a97716a0a05cdb93398542a615f6322 (diff) | |
download | chromium_src-e72a5906fbef55afa52203a0bc2f7868b4601526.zip chromium_src-e72a5906fbef55afa52203a0bc2f7868b4601526.tar.gz chromium_src-e72a5906fbef55afa52203a0bc2f7868b4601526.tar.bz2 |
Upstream iOS implementation of ProfileOAuth2TokenService
This CL adds the iOS implementation of the ProfileOAuth2TokenService.
BUG=NONE
Review URL: https://codereview.chromium.org/226643012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263008 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ios/provider')
-rw-r--r-- | ios/provider/ios_components.gyp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ios/provider/ios_components.gyp b/ios/provider/ios_components.gyp new file mode 100644 index 0000000..002c43a --- /dev/null +++ b/ios/provider/ios_components.gyp @@ -0,0 +1,20 @@ +# Copyright 2014 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, + }, + 'targets': [ + { + 'target_name': 'ios_components', + 'type': 'none', + 'include_dirs': [ + '../..', + ], + 'sources': [ + '../public/provider/components/signin/browser/profile_oauth2_token_service_ios_provider.h', + ] + }, + ], +} |