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 static_library("webdata_services") { | 5 static_library("webdata_services") { |
6 output_name = "webdata_services" | 6 output_name = "webdata_services" |
7 | 7 |
8 sources = [ | 8 sources = [ |
9 "web_data_service_wrapper.cc", | 9 "web_data_service_wrapper.cc", |
10 "web_data_service_wrapper.h", | 10 "web_data_service_wrapper.h", |
11 ] | 11 ] |
12 | 12 |
13 deps = [ | 13 deps = [ |
14 "//base", | 14 "//base", |
15 "//components/autofill/core/browser", | 15 "//components/autofill/core/browser", |
16 "//components/keyed_service/core", | 16 "//components/keyed_service/core", |
17 "//components/password_manager/core/browser", | 17 "//components/password_manager/core/browser", |
18 "//components/search_engines", | 18 "//components/search_engines", |
19 "//components/signin/core/browser", | 19 "//components/signin/core/browser", |
| 20 "//components/sync", |
20 "//components/webdata/common", | 21 "//components/webdata/common", |
21 "//sql", | 22 "//sql", |
22 "//sync", | |
23 ] | 23 ] |
24 } | 24 } |
25 | 25 |
26 static_library("test_support") { | 26 static_library("test_support") { |
27 testonly = true | 27 testonly = true |
28 sources = [ | 28 sources = [ |
29 "web_data_service_test_util.cc", | 29 "web_data_service_test_util.cc", |
30 "web_data_service_test_util.h", | 30 "web_data_service_test_util.h", |
31 ] | 31 ] |
32 | 32 |
33 deps = [ | 33 deps = [ |
34 ":webdata_services", | 34 ":webdata_services", |
35 "//base", | 35 "//base", |
36 "//components/autofill/core/browser", | 36 "//components/autofill/core/browser", |
37 "//components/signin/core/browser", | 37 "//components/signin/core/browser", |
38 ] | 38 ] |
39 } | 39 } |
OLD | NEW |