| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 ], | 192 ], |
| 193 'include_dirs': [ | 193 'include_dirs': [ |
| 194 '..', | 194 '..', |
| 195 ], | 195 ], |
| 196 'sources': [ | 196 'sources': [ |
| 197 'password_manager/content/renderer/credential_manager_client.cc', | 197 'password_manager/content/renderer/credential_manager_client.cc', |
| 198 'password_manager/content/renderer/credential_manager_client.h', | 198 'password_manager/content/renderer/credential_manager_client.h', |
| 199 ], | 199 ], |
| 200 }, | 200 }, |
| 201 { | 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 { | |
| 222 # GN version: //components/password_manager/content/browser | 202 # GN version: //components/password_manager/content/browser |
| 223 'target_name': 'password_manager_content_browser', | 203 'target_name': 'password_manager_content_browser', |
| 224 'type': 'static_library', | 204 'type': 'static_library', |
| 225 'dependencies': [ | 205 'dependencies': [ |
| 226 '../base/base.gyp:base', | 206 '../base/base.gyp:base', |
| 227 '../content/content.gyp:content_browser', | 207 '../content/content.gyp:content_browser', |
| 228 '../content/content.gyp:content_common', | 208 '../content/content.gyp:content_common', |
| 229 '../ipc/ipc.gyp:ipc', | 209 '../ipc/ipc.gyp:ipc', |
| 230 '../net/net.gyp:net', | 210 '../net/net.gyp:net', |
| 231 'autofill_content_browser', | 211 'autofill_content_browser', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 243 'password_manager/content/browser/content_password_manager_driver.cc
', | 223 'password_manager/content/browser/content_password_manager_driver.cc
', |
| 244 'password_manager/content/browser/content_password_manager_driver.h'
, | 224 'password_manager/content/browser/content_password_manager_driver.h'
, |
| 245 'password_manager/content/browser/password_manager_internals_service
_factory.cc', | 225 'password_manager/content/browser/password_manager_internals_service
_factory.cc', |
| 246 'password_manager/content/browser/password_manager_internals_service
_factory.h', | 226 'password_manager/content/browser/password_manager_internals_service
_factory.h', |
| 247 ], | 227 ], |
| 248 }, | 228 }, |
| 249 ], | 229 ], |
| 250 }], | 230 }], |
| 251 ], | 231 ], |
| 252 } | 232 } |
| OLD | NEW |