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