Chromium Code Reviews| 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 include_dirs = [ | |
| 29 "..", | |
|
tfarina
2014/07/04 23:43:28
are you sure you need this? I see webdata.gypi has
jbroman
2014/07/07 14:09:28
Quite correct. This path isn't even right anymore,
| |
| 30 ] | |
| 31 | |
| 32 defines = [ | |
| 33 "WEBDATA_IMPLEMENTATION", | |
| 34 ] | |
| 35 | |
| 36 deps = [ | |
| 37 "//base", | |
|
tfarina
2014/07/04 23:43:28
the above source list does not need chrome/browser
| |
| 38 "//sql", | |
| 39 ] | |
| 40 } | |
| OLD | NEW |