OLD | NEW |
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 component("common") { | 5 component("common") { |
6 output_name = "webdata_common" | 6 output_name = "webdata_common" |
7 | 7 |
8 sources = [ | 8 sources = [ |
9 "web_database.cc", | 9 "web_database.cc", |
10 "web_database.h", | 10 "web_database.h", |
11 "web_database_service.cc", | 11 "web_database_service.cc", |
12 "web_database_service.h", | 12 "web_database_service.h", |
13 "web_database_table.cc", | 13 "web_database_table.cc", |
14 "web_database_table.h", | 14 "web_database_table.h", |
15 "web_data_request_manager.cc", | 15 "web_data_request_manager.cc", |
16 "web_data_request_manager.h", | 16 "web_data_request_manager.h", |
17 "web_data_results.h", | 17 "web_data_results.h", |
18 "web_data_service_backend.cc", | 18 "web_data_service_backend.cc", |
19 "web_data_service_backend.h", | 19 "web_data_service_backend.h", |
20 "web_data_service_base.cc", | 20 "web_data_service_base.cc", |
21 "web_data_service_base.h", | 21 "web_data_service_base.h", |
22 "web_data_service_consumer.h", | 22 "web_data_service_consumer.h", |
23 "webdata_constants.cc", | 23 "webdata_constants.cc", |
24 "webdata_constants.h", | 24 "webdata_constants.h", |
25 "webdata_export.h", | 25 "webdata_export.h", |
26 ] | 26 ] |
27 | 27 |
28 defines = [ | 28 defines = [ "WEBDATA_IMPLEMENTATION" ] |
29 "WEBDATA_IMPLEMENTATION", | |
30 ] | |
31 | 29 |
32 deps = [ | 30 deps = [ |
33 "//base", | 31 "//base", |
34 "//sql", | 32 "//sql", |
35 ] | 33 ] |
36 } | 34 } |
OLD | NEW |