Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(434)

Side by Side Diff: components/password_manager.gypi

Issue 797983003: Implement AffiliationDatabase to cache affiliation information in a SQLite DB. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@aff_fetcher
Patch Set: Fix nits. Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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',
11 'dependencies': [ 11 'dependencies': [
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../net/net.gyp:net', 13 '../net/net.gyp:net',
14 '../sql/sql.gyp:sql', 14 '../sql/sql.gyp:sql',
15 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 15 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
16 '../url/url.gyp:url_lib', 16 '../url/url.gyp:url_lib',
17 'autofill_core_common', 17 'autofill_core_common',
18 'components_strings.gyp:components_strings', 18 'components_strings.gyp:components_strings',
19 'keyed_service_core', 19 'keyed_service_core',
20 'os_crypt', 20 'os_crypt',
21 'password_manager_core_common', 21 'password_manager_core_common',
22 'password_manager_core_browser_proto', 22 'password_manager_core_browser_proto',
23 ], 23 ],
24 'include_dirs': [ 24 'include_dirs': [
25 '..', 25 '..',
26 ], 26 ],
27 'sources': [ 27 'sources': [
28 # Note: sources list duplicated in GN build. 28 # Note: sources list duplicated in GN build.
29 'password_manager/core/browser/affiliation_fetcher_delegate.h', 29 'password_manager/core/browser/affiliation_fetcher_delegate.h',
30 'password_manager/core/browser/affiliation_database.cc',
31 'password_manager/core/browser/affiliation_database.h',
30 'password_manager/core/browser/affiliation_fetcher.cc', 32 'password_manager/core/browser/affiliation_fetcher.cc',
31 'password_manager/core/browser/affiliation_fetcher.h', 33 'password_manager/core/browser/affiliation_fetcher.h',
32 'password_manager/core/browser/affiliation_utils.cc', 34 'password_manager/core/browser/affiliation_utils.cc',
33 'password_manager/core/browser/affiliation_utils.h', 35 'password_manager/core/browser/affiliation_utils.h',
34 'password_manager/core/browser/browser_save_password_progress_logger.cc' , 36 'password_manager/core/browser/browser_save_password_progress_logger.cc' ,
35 'password_manager/core/browser/browser_save_password_progress_logger.h', 37 'password_manager/core/browser/browser_save_password_progress_logger.h',
36 'password_manager/core/browser/credential_manager_dispatcher.h', 38 'password_manager/core/browser/credential_manager_dispatcher.h',
37 'password_manager/core/browser/log_receiver.h', 39 'password_manager/core/browser/log_receiver.h',
38 'password_manager/core/browser/log_router.cc', 40 'password_manager/core/browser/log_router.cc',
39 'password_manager/core/browser/log_router.h', 41 'password_manager/core/browser/log_router.h',
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 'password_manager/content/browser/credential_manager_password_form_m anager.cc', 258 'password_manager/content/browser/credential_manager_password_form_m anager.cc',
257 'password_manager/content/browser/credential_manager_password_form_m anager.h', 259 'password_manager/content/browser/credential_manager_password_form_m anager.h',
258 'password_manager/content/browser/password_manager_internals_service _factory.cc', 260 'password_manager/content/browser/password_manager_internals_service _factory.cc',
259 'password_manager/content/browser/password_manager_internals_service _factory.h', 261 'password_manager/content/browser/password_manager_internals_service _factory.h',
260 ], 262 ],
261 }, 263 },
262 ], 264 ],
263 }], 265 }],
264 ], 266 ],
265 } 267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698