| 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': [ |
| 11 '..', | 11 '..', |
| 12 ], | 12 ], |
| 13 'sources': [ | 13 'sources': [ |
| 14 'signin/core/common/signin_pref_names.cc', | 14 'signin/core/common/signin_pref_names.cc', |
| 15 'signin/core/common/signin_pref_names.h', | 15 'signin/core/common/signin_pref_names.h', |
| 16 'signin/core/common/signin_switches.cc', | 16 'signin/core/common/signin_switches.cc', |
| 17 'signin/core/common/signin_switches.h', | 17 'signin/core/common/signin_switches.h', |
| 18 'signin/core/common/profile_management_switches.cc', |
| 19 'signin/core/common/profile_management_switches.h', |
| 18 ], | 20 ], |
| 19 }, | 21 }, |
| 20 { | 22 { |
| 21 'target_name': 'signin_core_browser', | 23 'target_name': 'signin_core_browser', |
| 22 'type': 'static_library', | 24 'type': 'static_library', |
| 23 'dependencies': [ | 25 'dependencies': [ |
| 24 '../base/base.gyp:base', | 26 '../base/base.gyp:base', |
| 25 '../crypto/crypto.gyp:crypto', | 27 '../crypto/crypto.gyp:crypto', |
| 26 '../google_apis/google_apis.gyp:google_apis', | 28 '../google_apis/google_apis.gyp:google_apis', |
| 27 '../net/net.gyp:net', | 29 '../net/net.gyp:net', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 'signin/core/browser/mutable_profile_oauth2_token_service.cc', | 76 'signin/core/browser/mutable_profile_oauth2_token_service.cc', |
| 75 'signin/core/browser/mutable_profile_oauth2_token_service.h', | 77 'signin/core/browser/mutable_profile_oauth2_token_service.h', |
| 76 ], | 78 ], |
| 77 }], | 79 }], |
| 78 ['chromeos==1', { | 80 ['chromeos==1', { |
| 79 'sources!': [ | 81 'sources!': [ |
| 80 'signin/core/browser/signin_manager.cc', | 82 'signin/core/browser/signin_manager.cc', |
| 81 ], | 83 ], |
| 82 }], | 84 }], |
| 83 ], | 85 ], |
| 84 | |
| 85 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 86 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 86 'msvs_disabled_warnings': [4267, ], | 87 'msvs_disabled_warnings': [4267, ], |
| 87 }, | 88 }, |
| 88 { | 89 { |
| 89 'target_name': 'signin_core_browser_test_support', | 90 'target_name': 'signin_core_browser_test_support', |
| 90 'type': 'static_library', | 91 'type': 'static_library', |
| 91 'dependencies': [ | 92 'dependencies': [ |
| 92 'signin_core_browser', | 93 'signin_core_browser', |
| 93 '../testing/gtest.gyp:gtest', | 94 '../testing/gtest.gyp:gtest', |
| 94 ], | 95 ], |
| (...skipping 23 matching lines...) Expand all Loading... |
| 118 ], | 119 ], |
| 119 'sources': [ | 120 'sources': [ |
| 120 'signin/ios/browser/profile_oauth2_token_service_ios.h', | 121 'signin/ios/browser/profile_oauth2_token_service_ios.h', |
| 121 'signin/ios/browser/profile_oauth2_token_service_ios.mm', | 122 'signin/ios/browser/profile_oauth2_token_service_ios.mm', |
| 122 ], | 123 ], |
| 123 }, | 124 }, |
| 124 ], | 125 ], |
| 125 }], | 126 }], |
| 126 ], | 127 ], |
| 127 } | 128 } |
| OLD | NEW |