OLD | NEW |
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 '../base/base.gyp:base', | 47 '../base/base.gyp:base', |
48 '../content/content.gyp:content_browser', | 48 '../content/content.gyp:content_browser', |
49 '../sql/sql.gyp:sql', | 49 '../sql/sql.gyp:sql', |
50 ], | 50 ], |
51 'defines': [ | 51 'defines': [ |
52 'WEBDATA_IMPLEMENTATION', | 52 'WEBDATA_IMPLEMENTATION', |
53 ], | 53 ], |
54 'sources': [ | 54 'sources': [ |
55 'webdata/common/web_database.cc', | 55 'webdata/common/web_database.cc', |
56 'webdata/common/web_database.h', | 56 'webdata/common/web_database.h', |
| 57 'webdata/common/web_database_observer.h', |
57 'webdata/common/web_database_service.cc', | 58 'webdata/common/web_database_service.cc', |
58 'webdata/common/web_database_service.h', | 59 'webdata/common/web_database_service.h', |
59 'webdata/common/web_database_table.cc', | 60 'webdata/common/web_database_table.cc', |
60 'webdata/common/web_database_table.h', | 61 'webdata/common/web_database_table.h', |
61 'webdata/common/web_data_request_manager.cc', | 62 'webdata/common/web_data_request_manager.cc', |
62 'webdata/common/web_data_request_manager.h', | 63 'webdata/common/web_data_request_manager.h', |
63 'webdata/common/web_data_results.h', | 64 'webdata/common/web_data_results.h', |
| 65 'webdata/common/web_data_service_backend.cc', |
| 66 'webdata/common/web_data_service_backend.h', |
64 'webdata/common/web_data_service_base.cc', | 67 'webdata/common/web_data_service_base.cc', |
65 'webdata/common/web_data_service_base.h', | 68 'webdata/common/web_data_service_base.h', |
66 'webdata/common/web_data_service_consumer.h', | 69 'webdata/common/web_data_service_consumer.h', |
67 'webdata/common/webdata_constants.cc', | 70 'webdata/common/webdata_constants.cc', |
68 'webdata/common/webdata_constants.h', | 71 'webdata/common/webdata_constants.h', |
69 'webdata/common/webdata_export.h' | 72 'webdata/common/webdata_export.h' |
70 ], | 73 ], |
71 }, | 74 }, |
72 ], | 75 ], |
73 } | 76 } |
OLD | NEW |