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

Side by Side Diff: components/password_manager.gypi

Issue 767163005: Add AffiliationFetcher to fetch authoritative affiliation information regarding facets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix GN build. Created 6 years 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/password_manager/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '../url/url.gyp:url_lib', 16 '../url/url.gyp:url_lib',
16 'autofill_core_common', 17 'autofill_core_common',
17 'keyed_service_core', 18 'keyed_service_core',
18 'os_crypt', 19 'os_crypt',
19 'password_manager_core_common', 20 'password_manager_core_common',
21 'password_manager_core_browser_proto',
20 ], 22 ],
21 'include_dirs': [ 23 'include_dirs': [
22 '..', 24 '..',
23 ], 25 ],
24 'sources': [ 26 'sources': [
25 # Note: sources list duplicated in GN build. 27 # Note: sources list duplicated in GN build.
28 'password_manager/core/browser/affiliation_fetcher_delegate.h',
29 'password_manager/core/browser/affiliation_fetcher.cc',
30 'password_manager/core/browser/affiliation_fetcher.h',
26 'password_manager/core/browser/affiliation_utils.cc', 31 'password_manager/core/browser/affiliation_utils.cc',
27 'password_manager/core/browser/affiliation_utils.h', 32 'password_manager/core/browser/affiliation_utils.h',
28 'password_manager/core/browser/browser_save_password_progress_logger.cc' , 33 'password_manager/core/browser/browser_save_password_progress_logger.cc' ,
29 'password_manager/core/browser/browser_save_password_progress_logger.h', 34 'password_manager/core/browser/browser_save_password_progress_logger.h',
30 'password_manager/core/browser/credential_manager_dispatcher.h', 35 'password_manager/core/browser/credential_manager_dispatcher.h',
31 'password_manager/core/browser/log_receiver.h', 36 'password_manager/core/browser/log_receiver.h',
32 'password_manager/core/browser/log_router.cc', 37 'password_manager/core/browser/log_router.cc',
33 'password_manager/core/browser/log_router.h', 38 'password_manager/core/browser/log_router.h',
34 'password_manager/core/browser/login_database.cc', 39 'password_manager/core/browser/login_database.cc',
35 'password_manager/core/browser/login_database.h', 40 'password_manager/core/browser/login_database.h',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 # Note: sources list duplicated in GN build. 110 # Note: sources list duplicated in GN build.
106 'password_manager/core/browser/password_syncable_service.cc', 111 'password_manager/core/browser/password_syncable_service.cc',
107 'password_manager/core/browser/password_syncable_service.h', 112 'password_manager/core/browser/password_syncable_service.h',
108 ], 113 ],
109 }], 114 }],
110 ], 115 ],
111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 116 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
112 'msvs_disabled_warnings': [ 4267, ], 117 'msvs_disabled_warnings': [ 4267, ],
113 }, 118 },
114 { 119 {
120 # GN version: //components/password_manager/core/browser:proto
121 'target_name': 'password_manager_core_browser_proto',
122 'type': 'static_library',
123 'sources': [
124 'password_manager/core/browser/affiliation_api.proto'
125 ],
126 'variables': {
127 'proto_in_dir': 'password_manager/core/browser',
128 'proto_out_dir': 'components/password_manager/core/browser',
129 },
130 'includes': ['../build/protoc.gypi'],
131 },
132 {
115 # GN version: //components/password_manager/core/browser:test_support 133 # GN version: //components/password_manager/core/browser:test_support
116 'target_name': 'password_manager_core_browser_test_support', 134 'target_name': 'password_manager_core_browser_test_support',
117 'type': 'static_library', 135 'type': 'static_library',
118 'dependencies': [ 136 'dependencies': [
119 'autofill_core_common', 137 'autofill_core_common',
120 '../base/base.gyp:base', 138 '../base/base.gyp:base',
121 '../testing/gmock.gyp:gmock', 139 '../testing/gmock.gyp:gmock',
122 '../testing/gtest.gyp:gtest', 140 '../testing/gtest.gyp:gtest',
123 ], 141 ],
124 'include_dirs': [ 142 'include_dirs': [
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 'password_manager/content/browser/credential_manager_password_form_m anager.cc', 255 'password_manager/content/browser/credential_manager_password_form_m anager.cc',
238 'password_manager/content/browser/credential_manager_password_form_m anager.h', 256 'password_manager/content/browser/credential_manager_password_form_m anager.h',
239 'password_manager/content/browser/password_manager_internals_service _factory.cc', 257 'password_manager/content/browser/password_manager_internals_service _factory.cc',
240 'password_manager/content/browser/password_manager_internals_service _factory.h', 258 'password_manager/content/browser/password_manager_internals_service _factory.h',
241 ], 259 ],
242 }, 260 },
243 ], 261 ],
244 }], 262 }],
245 ], 263 ],
246 } 264 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/password_manager/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698