Chromium Code Reviews| 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 # 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', |
| 11 'include_dirs': [ | 11 'include_dirs': [ |
| 12 '..', | 12 '..', |
| 13 ], | 13 ], |
| 14 'sources': [ | 14 'sources': [ |
| 15 'signin/core/common/signin_pref_names.cc', | 15 'signin/core/common/signin_pref_names.cc', |
| 16 'signin/core/common/signin_pref_names.h', | 16 'signin/core/common/signin_pref_names.h', |
| 17 'signin/core/common/signin_switches.cc', | 17 'signin/core/common/signin_switches.cc', |
| 18 'signin/core/common/signin_switches.h', | 18 'signin/core/common/signin_switches.h', |
| 19 'signin/core/common/profile_management_switches.cc', | 19 'signin/core/common/profile_management_switches.cc', |
| 20 'signin/core/common/profile_management_switches.h', | 20 'signin/core/common/profile_management_switches.h', |
| 21 ], | 21 ], |
| 22 }, | 22 }, |
| 23 { | 23 { |
| 24 # GN version: //components/signin/core/browser | 24 # GN version: //components/signin/core/browser |
| 25 'target_name': 'signin_core_browser', | 25 'target_name': 'signin_core_browser', |
| 26 'type': 'static_library', | 26 'type': 'static_library', |
| 27 'dependencies': [ | 27 'dependencies': [ |
| 28 '../base/base.gyp:base', | 28 '../base/base.gyp:base', |
| 29 '../base/base.gyp:base_i18n', | |
|
nyquist
2014/09/26 20:26:15
You didn't change anything in this component, why
maxbogue
2014/09/26 21:06:57
Leftover from the dep fixing I was doing when I ha
| |
| 30 '../base/base.gyp:base_prefs', | |
| 29 '../crypto/crypto.gyp:crypto', | 31 '../crypto/crypto.gyp:crypto', |
| 30 '../google_apis/google_apis.gyp:google_apis', | 32 '../google_apis/google_apis.gyp:google_apis', |
| 31 '../net/net.gyp:net', | 33 '../net/net.gyp:net', |
| 32 '../sql/sql.gyp:sql', | 34 '../sql/sql.gyp:sql', |
| 33 '../third_party/icu/icu.gyp:icui18n', | 35 '../third_party/icu/icu.gyp:icui18n', |
| 34 '../third_party/icu/icu.gyp:icuuc', | 36 '../third_party/icu/icu.gyp:icuuc', |
| 35 'keyed_service_core', | 37 'keyed_service_core', |
| 36 'os_crypt', | 38 'os_crypt', |
| 37 'signin_core_common', | 39 'signin_core_common', |
| 38 'webdata_common', | 40 'webdata_common', |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 132 'sources': [ | 134 'sources': [ |
| 133 # Note: file list duplicated in GN build. | 135 # Note: file list duplicated in GN build. |
| 134 'signin/ios/browser/profile_oauth2_token_service_ios.h', | 136 'signin/ios/browser/profile_oauth2_token_service_ios.h', |
| 135 'signin/ios/browser/profile_oauth2_token_service_ios.mm', | 137 'signin/ios/browser/profile_oauth2_token_service_ios.mm', |
| 136 ], | 138 ], |
| 137 }, | 139 }, |
| 138 ], | 140 ], |
| 139 }], | 141 }], |
| 140 ], | 142 ], |
| 141 } | 143 } |
| OLD | NEW |