OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |