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': [ |
11 'autofill_core_common', | |
12 'encryptor', | |
13 'password_manager_core_common', | |
14 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
15 '../net/net.gyp:net', | 12 '../net/net.gyp:net', |
16 '../sql/sql.gyp:sql', | 13 '../sql/sql.gyp:sql', |
17 '../url/url.gyp:url_lib', | 14 '../url/url.gyp:url_lib', |
| 15 'autofill_core_common', |
| 16 'os_crypt', |
| 17 'password_manager_core_common', |
18 ], | 18 ], |
19 'include_dirs': [ | 19 'include_dirs': [ |
20 '..', | 20 '..', |
21 ], | 21 ], |
22 'sources': [ | 22 'sources': [ |
23 'password_manager/core/browser/login_database.cc', | 23 'password_manager/core/browser/login_database.cc', |
24 'password_manager/core/browser/login_database.h', | 24 'password_manager/core/browser/login_database.h', |
25 'password_manager/core/browser/login_database_mac.cc', | 25 'password_manager/core/browser/login_database_mac.cc', |
26 'password_manager/core/browser/login_database_posix.cc', | 26 'password_manager/core/browser/login_database_posix.cc', |
27 'password_manager/core/browser/login_database_win.cc', | 27 'password_manager/core/browser/login_database_win.cc', |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 ], | 146 ], |
147 'sources': [ | 147 'sources': [ |
148 'password_manager/content/browser/content_password_manager_driver.cc
', | 148 'password_manager/content/browser/content_password_manager_driver.cc
', |
149 'password_manager/content/browser/content_password_manager_driver.h'
, | 149 'password_manager/content/browser/content_password_manager_driver.h'
, |
150 ], | 150 ], |
151 }, | 151 }, |
152 ], | 152 ], |
153 }], | 153 }], |
154 ], | 154 ], |
155 } | 155 } |
OLD | NEW |