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

Side by Side Diff: components/webdata.gypi

Issue 962903003: Rename WebDataServiceBackend to WebDatabaseBackend (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and fix nits Created 5 years, 9 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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': 'webdata_common', 8 'target_name': 'webdata_common',
9 'type': '<(component)', 9 'type': '<(component)',
10 'include_dirs': [ 10 'include_dirs': [
11 '..', 11 '..',
12 ], 12 ],
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../content/content.gyp:content_browser', 15 '../content/content.gyp:content_browser',
16 '../sql/sql.gyp:sql', 16 '../sql/sql.gyp:sql',
17 ], 17 ],
18 'defines': [ 18 'defines': [
19 'WEBDATA_IMPLEMENTATION', 19 'WEBDATA_IMPLEMENTATION',
20 ], 20 ],
21 'sources': [ 21 'sources': [
22 'webdata/common/web_data_request_manager.cc', 22 'webdata/common/web_data_request_manager.cc',
23 'webdata/common/web_data_request_manager.h', 23 'webdata/common/web_data_request_manager.h',
24 'webdata/common/web_data_results.h', 24 'webdata/common/web_data_results.h',
25 'webdata/common/web_data_service_backend.cc',
26 'webdata/common/web_data_service_backend.h',
27 'webdata/common/web_data_service_base.cc', 25 'webdata/common/web_data_service_base.cc',
28 'webdata/common/web_data_service_base.h', 26 'webdata/common/web_data_service_base.h',
29 'webdata/common/web_data_service_consumer.h', 27 'webdata/common/web_data_service_consumer.h',
30 'webdata/common/web_database.cc', 28 'webdata/common/web_database.cc',
31 'webdata/common/web_database.h', 29 'webdata/common/web_database.h',
30 'webdata/common/web_database_backend.cc',
31 'webdata/common/web_database_backend.h',
32 'webdata/common/web_database_service.cc', 32 'webdata/common/web_database_service.cc',
33 'webdata/common/web_database_service.h', 33 'webdata/common/web_database_service.h',
34 'webdata/common/web_database_table.cc', 34 'webdata/common/web_database_table.cc',
35 'webdata/common/web_database_table.h', 35 'webdata/common/web_database_table.h',
36 'webdata/common/webdata_constants.cc', 36 'webdata/common/webdata_constants.cc',
37 'webdata/common/webdata_constants.h', 37 'webdata/common/webdata_constants.h',
38 'webdata/common/webdata_export.h' 38 'webdata/common/webdata_export.h'
39 ], 39 ],
40 }, 40 },
41 ], 41 ],
42 } 42 }
OLDNEW
« no previous file with comments | « components/autofill/core/browser/webdata/autofill_webdata_service.cc ('k') | components/webdata/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698