OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'targets': [ | |
7 { | |
8 'target_name': 'webdata_common', | |
9 'type': '<(component)', | |
10 'include_dirs': [ | |
11 '..', | |
12 ], | |
13 'dependencies': [ | |
14 '../base/base.gyp:base', | |
15 '../sql/sql.gyp:sql', | |
16 ], | |
17 'defines': [ | |
18 'WEBDATA_IMPLEMENTATION', | |
19 ], | |
20 'sources': [ | |
21 'webdata/common/web_data_request_manager.cc', | |
22 'webdata/common/web_data_request_manager.h', | |
23 'webdata/common/web_data_results.h', | |
24 'webdata/common/web_data_service_base.cc', | |
25 'webdata/common/web_data_service_base.h', | |
26 'webdata/common/web_data_service_consumer.h', | |
27 'webdata/common/web_database.cc', | |
28 'webdata/common/web_database.h', | |
29 'webdata/common/web_database_backend.cc', | |
30 'webdata/common/web_database_backend.h', | |
31 'webdata/common/web_database_service.cc', | |
32 'webdata/common/web_database_service.h', | |
33 'webdata/common/web_database_table.cc', | |
34 'webdata/common/web_database_table.h', | |
35 'webdata/common/webdata_constants.cc', | |
36 'webdata/common/webdata_constants.h', | |
37 'webdata/common/webdata_export.h' | |
38 ], | |
39 }, | |
40 ], | |
41 } | |
OLD | NEW |