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

Side by Side Diff: components/webdata.gypi

Issue 14103021: Use Observer to notify of WebDB load instead of callbacks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge and fix WIN Created 7 years, 8 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 | Annotate | Revision Log
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': 'encryptor', 8 'target_name': 'encryptor',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 29 matching lines...) Expand all
40 '../base/base.gyp:base', 40 '../base/base.gyp:base',
41 '../content/content.gyp:content_browser', 41 '../content/content.gyp:content_browser',
42 '../sql/sql.gyp:sql', 42 '../sql/sql.gyp:sql',
43 ], 43 ],
44 'defines': [ 44 'defines': [
45 'WEBDATA_IMPLEMENTATION', 45 'WEBDATA_IMPLEMENTATION',
46 ], 46 ],
47 'sources': [ 47 'sources': [
48 'webdata/common/web_database.cc', 48 'webdata/common/web_database.cc',
49 'webdata/common/web_database.h', 49 'webdata/common/web_database.h',
50 'webdata/common/web_database_observer.h',
50 'webdata/common/web_database_service.cc', 51 'webdata/common/web_database_service.cc',
51 'webdata/common/web_database_service.h', 52 'webdata/common/web_database_service.h',
52 'webdata/common/web_database_table.cc', 53 'webdata/common/web_database_table.cc',
53 'webdata/common/web_database_table.h', 54 'webdata/common/web_database_table.h',
54 'webdata/common/web_data_request_manager.cc', 55 'webdata/common/web_data_request_manager.cc',
55 'webdata/common/web_data_request_manager.h', 56 'webdata/common/web_data_request_manager.h',
56 'webdata/common/web_data_results.h', 57 'webdata/common/web_data_results.h',
58 'webdata/common/web_data_service_backend.cc',
59 'webdata/common/web_data_service_backend.h',
57 'webdata/common/web_data_service_base.cc', 60 'webdata/common/web_data_service_base.cc',
58 'webdata/common/web_data_service_base.h', 61 'webdata/common/web_data_service_base.h',
59 'webdata/common/web_data_service_consumer.h', 62 'webdata/common/web_data_service_consumer.h',
60 'webdata/common/webdata_constants.cc', 63 'webdata/common/webdata_constants.cc',
61 'webdata/common/webdata_constants.h', 64 'webdata/common/webdata_constants.h',
62 'webdata/common/webdata_export.h' 65 'webdata/common/webdata_export.h'
63 ], 66 ],
64 }, 67 },
65 ], 68 ],
66 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698