blob: 35d434b5b076edd84f123339ed94d0fbfc8b9f9a [file] [log] [blame]
sdefresnecb955cd2014-12-15 23:21:561# 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
5static_library("webdata_services") {
6 output_name = "webdata_services"
7
8 sources = [
9 "web_data_service_wrapper.cc",
10 "web_data_service_wrapper.h",
11 ]
12
13 deps = [
14 "//base",
15 "//components/autofill/core/browser",
16 "//components/keyed_service/core",
17 "//components/password_manager/core/browser",
18 "//components/search_engines",
19 "//components/signin/core/browser",
20 "//components/webdata/common",
21 "//sql",
sdefresnef8cf5be2014-12-16 20:08:0922 "//sync",
sdefresnecb955cd2014-12-15 23:21:5623 ]
24}
25
brettw2dbbe5b02016-07-14 19:38:5726static_library("test_support") {
sdefresnecb955cd2014-12-15 23:21:5627 testonly = true
28 sources = [
29 "web_data_service_test_util.cc",
30 "web_data_service_test_util.h",
31 ]
32
33 deps = [
34 ":webdata_services",
35 "//base",
36 "//components/autofill/core/browser",
37 "//components/signin/core/browser",
38 ]
39}