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': 'password_manager_core_browser', | 8 'target_name': 'password_manager_core_browser', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 '..', | 117 '..', |
118 ], | 118 ], |
119 'sources': [ | 119 'sources': [ |
120 'password_manager/core/common/password_manager_pref_names.cc', | 120 'password_manager/core/common/password_manager_pref_names.cc', |
121 'password_manager/core/common/password_manager_pref_names.h', | 121 'password_manager/core/common/password_manager_pref_names.h', |
122 'password_manager/core/common/password_manager_switches.cc', | 122 'password_manager/core/common/password_manager_switches.cc', |
123 'password_manager/core/common/password_manager_switches.h', | 123 'password_manager/core/common/password_manager_switches.h', |
124 ], | 124 ], |
125 }, | 125 }, |
126 ], | 126 ], |
| 127 'conditions': [ |
| 128 ['OS != "ios"', { |
| 129 'targets': [ |
| 130 { |
| 131 'target_name': 'password_manager_content_browser', |
| 132 'type': 'static_library', |
| 133 'dependencies': [ |
| 134 'autofill_content_browser', |
| 135 'autofill_content_common', |
| 136 'autofill_core_common', |
| 137 'password_manager_core_browser', |
| 138 '../base/base.gyp:base', |
| 139 '../content/content.gyp:content_browser', |
| 140 '../content/content.gyp:content_common', |
| 141 '../ipc/ipc.gyp:ipc', |
| 142 '../net/net.gyp:net', |
| 143 ], |
| 144 'include_dirs': [ |
| 145 '..', |
| 146 ], |
| 147 'sources': [ |
| 148 'password_manager/content/browser/content_password_manager_driver.cc
', |
| 149 'password_manager/content/browser/content_password_manager_driver.h'
, |
| 150 ], |
| 151 }, |
| 152 ], |
| 153 }], |
| 154 ], |
127 } | 155 } |
OLD | NEW |