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("webdata_services") { |
| 6 output_name = "webdata_services" |
| 7 |
| 8 sources = [ |
| 9 "web_data_service_wrapper.cc", |
| 10 "web_data_service_wrapper.h", |
| 11 "webdata_services_export.h", |
| 12 ] |
| 13 |
| 14 defines = [ "WEBDATA_SERVICES_IMPLEMENTATION" ] |
| 15 |
| 16 deps = [ |
| 17 "//base", |
| 18 "//components/autofill/core/browser", |
| 19 "//components/password_manager/core/browser", |
| 20 "//components/search_engines", |
| 21 "//components/signin/core/browser", |
| 22 "//components/webdata/common", |
| 23 "//sql", |
| 24 ] |
| 25 } |
OLD | NEW |