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/password_manager/core/browser | 8 # GN version: //components/password_manager/core/browser |
9 'target_name': 'password_manager_core_browser', | 9 'target_name': 'password_manager_core_browser', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 'password_manager/core/common/password_manager_switches.h', | 150 'password_manager/core/common/password_manager_switches.h', |
151 'password_manager/core/common/password_manager_ui.cc', | 151 'password_manager/core/common/password_manager_ui.cc', |
152 'password_manager/core/common/password_manager_ui.h', | 152 'password_manager/core/common/password_manager_ui.h', |
153 ], | 153 ], |
154 }, | 154 }, |
155 ], | 155 ], |
156 'conditions': [ | 156 'conditions': [ |
157 ['OS != "ios"', { | 157 ['OS != "ios"', { |
158 'targets': [ | 158 'targets': [ |
159 { | 159 { |
| 160 # GN version: //components/password_manager/content/common |
| 161 'target_name': 'password_manager_content_common', |
| 162 'type': 'static_library', |
| 163 'dependencies': [ |
| 164 '../base/base.gyp:base', |
| 165 '../content/content.gyp:content_common', |
| 166 '../ipc/ipc.gyp:ipc', |
| 167 '../third_party/WebKit/public/blink.gyp:blink_minimal', |
| 168 'password_manager_core_common', |
| 169 ], |
| 170 'include_dirs': [ |
| 171 '..', |
| 172 ], |
| 173 'sources': [ |
| 174 'password_manager/content/common/credential_manager_message_generato
r.cc', |
| 175 'password_manager/content/common/credential_manager_message_generato
r.h', |
| 176 'password_manager/content/common/credential_manager_messages.h', |
| 177 'password_manager/content/common/credential_manager_types.cc', |
| 178 'password_manager/content/common/credential_manager_types.h', |
| 179 ], |
| 180 }, |
| 181 { |
| 182 # GN version: //components/password_manager/content/renderer |
| 183 'target_name': 'password_manager_content_renderer', |
| 184 'type': 'static_library', |
| 185 'dependencies': [ |
| 186 '../base/base.gyp:base', |
| 187 '../content/content.gyp:content_common', |
| 188 '../ipc/ipc.gyp:ipc', |
| 189 '../third_party/WebKit/public/blink.gyp:blink', |
| 190 'password_manager_core_common', |
| 191 'password_manager_content_common', |
| 192 ], |
| 193 'include_dirs': [ |
| 194 '..', |
| 195 ], |
| 196 'sources': [ |
| 197 'password_manager/content/renderer/credential_manager_client.cc', |
| 198 'password_manager/content/renderer/credential_manager_client.h', |
| 199 ], |
| 200 }, |
| 201 { |
| 202 # GN version: //components/password_manager/core/browser:test_support |
| 203 'target_name': 'password_manager_content_renderer_test_support', |
| 204 'type': 'static_library', |
| 205 'dependencies': [ |
| 206 'password_manager_content_common', |
| 207 '../base/base.gyp:base', |
| 208 '../testing/gmock.gyp:gmock', |
| 209 '../testing/gtest.gyp:gtest', |
| 210 '../third_party/WebKit/public/blink.gyp:blink', |
| 211 ], |
| 212 'include_dirs': [ |
| 213 '..', |
| 214 ], |
| 215 'sources': [ |
| 216 # Note: sources list duplicated in GN build. |
| 217 'password_manager/content/renderer/test_credential_manager_client.cc
', |
| 218 'password_manager/content/renderer/test_credential_manager_client.h'
, |
| 219 ], |
| 220 }, |
| 221 { |
160 # GN version: //components/password_manager/content/browser | 222 # GN version: //components/password_manager/content/browser |
161 'target_name': 'password_manager_content_browser', | 223 'target_name': 'password_manager_content_browser', |
162 'type': 'static_library', | 224 'type': 'static_library', |
163 'dependencies': [ | 225 'dependencies': [ |
| 226 '../base/base.gyp:base', |
| 227 '../content/content.gyp:content_browser', |
| 228 '../content/content.gyp:content_common', |
| 229 '../ipc/ipc.gyp:ipc', |
| 230 '../net/net.gyp:net', |
164 'autofill_content_browser', | 231 'autofill_content_browser', |
165 'autofill_content_common', | 232 'autofill_content_common', |
166 'autofill_core_common', | 233 'autofill_core_common', |
167 'keyed_service_content', | 234 'keyed_service_content', |
168 'password_manager_core_browser', | 235 'password_manager_core_browser', |
169 '../base/base.gyp:base', | 236 'password_manager_content_common', |
170 '../content/content.gyp:content_browser', | |
171 '../content/content.gyp:content_common', | |
172 '../ipc/ipc.gyp:ipc', | |
173 '../net/net.gyp:net', | |
174 ], | 237 ], |
175 'include_dirs': [ | 238 'include_dirs': [ |
176 '..', | 239 '..', |
177 ], | 240 ], |
178 'sources': [ | 241 'sources': [ |
179 # Note: sources list duplicated in GN build. | 242 # Note: sources list duplicated in GN build. |
180 'password_manager/content/browser/content_password_manager_driver.cc
', | 243 'password_manager/content/browser/content_password_manager_driver.cc
', |
181 'password_manager/content/browser/content_password_manager_driver.h'
, | 244 'password_manager/content/browser/content_password_manager_driver.h'
, |
182 'password_manager/content/browser/password_manager_internals_service
_factory.cc', | 245 'password_manager/content/browser/password_manager_internals_service
_factory.cc', |
183 'password_manager/content/browser/password_manager_internals_service
_factory.h', | 246 'password_manager/content/browser/password_manager_internals_service
_factory.h', |
184 ], | 247 ], |
185 }, | 248 }, |
186 ], | 249 ], |
187 }], | 250 }], |
188 ], | 251 ], |
189 } | 252 } |
OLD | NEW |