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

Side by Side Diff: components/signin.gypi

Issue 1096293003: Move screenlock_bridge to components/proximity_auth (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format Created 5 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
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 # GN version: //components/signin/core/common 8 # GN version: //components/signin/core/common
9 'target_name': 'signin_core_common', 9 'target_name': 'signin_core_common',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'signin/ios/browser/merge_session_observer_bridge.h', 142 'signin/ios/browser/merge_session_observer_bridge.h',
143 'signin/ios/browser/merge_session_observer_bridge.mm', 143 'signin/ios/browser/merge_session_observer_bridge.mm',
144 'signin/ios/browser/oauth2_token_service_observer_bridge.h', 144 'signin/ios/browser/oauth2_token_service_observer_bridge.h',
145 'signin/ios/browser/oauth2_token_service_observer_bridge.mm', 145 'signin/ios/browser/oauth2_token_service_observer_bridge.mm',
146 'signin/ios/browser/profile_oauth2_token_service_ios.h', 146 'signin/ios/browser/profile_oauth2_token_service_ios.h',
147 'signin/ios/browser/profile_oauth2_token_service_ios.mm', 147 'signin/ios/browser/profile_oauth2_token_service_ios.mm',
148 ], 148 ],
149 }, 149 },
150 ], 150 ],
151 }], 151 }],
152 ['OS != "ios"', {
153 'targets': [
154 {
155 # GN version: //components/signin/content:content
msarda 2015/04/21 16:02:57 This file was not yet added. I plan to add it in a
156 'target_name': 'signin_content',
157 'type': '<(component)',
158 'sources': [
159 'signin/content/screenlock_bridge.cc',
160 'signin/content/screenlock_bridge.h',
161 ],
162 'dependencies' : [
163 '../base/base.gyp:base',
164 ],
165 'include_dirs': [
166 '..',
167 ],
168 'conditions': [
169 ['chromeos==1', {
170 'dependencies': [
171 '../chromeos/chromeos.gyp:chromeos',
172 ],
173 }],
174 ],
175 }
176 ],
177 }],
152 ], 178 ],
153 } 179 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698