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

Side by Side Diff: components/signin.gypi

Issue 226643012: Upstream iOS implementation of ProfileOAuth2TokenService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'signin_core_common', 8 'target_name': 'signin_core_common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 '..', 96 '..',
97 ], 97 ],
98 'sources': [ 98 'sources': [
99 'signin/core/browser/fake_auth_status_provider.cc', 99 'signin/core/browser/fake_auth_status_provider.cc',
100 'signin/core/browser/fake_auth_status_provider.h', 100 'signin/core/browser/fake_auth_status_provider.h',
101 'signin/core/browser/test_signin_client.cc', 101 'signin/core/browser/test_signin_client.cc',
102 'signin/core/browser/test_signin_client.h', 102 'signin/core/browser/test_signin_client.h',
103 ], 103 ],
104 }, 104 },
105 ], 105 ],
106 'conditions': [
107 ['OS == "ios"', {
108 'targets': [
109 {
110 'target_name': 'signin_ios_browser',
111 'type': 'static_library',
112 'dependencies': [
113 'signin_core_browser',
114 '../ios/provider/ios_components.gyp:ios_components',
115 ],
116 'include_dirs': [
117 '..',
118 ],
119 'sources': [
120 'signin/ios/browser/profile_oauth2_token_service_ios.h',
121 'signin/ios/browser/profile_oauth2_token_service_ios.mm',
122 ],
123 },
124 ],
125 }],
126 ],
106 } 127 }
OLDNEW
« no previous file with comments | « no previous file | components/signin/core/browser/signin_client.h » ('j') | components/signin/core/browser/signin_client.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698