[M73 Dev][EFL] Disable VizDisplayCompositor for EFL port
[platform/framework/web/chromium-efl.git] / components / webdata_services / BUILD.gn
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 static_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/autofill/core/common",
17     "//components/keyed_service/core",
18     "//components/password_manager/core/browser",
19     "//components/search_engines",
20     "//components/signin/core/browser",
21     "//components/sync",
22     "//components/webdata/common",
23     "//sql",
24   ]
25
26   if (!is_ios) {
27     deps += [ "//components/payments/content:utils" ]
28   }
29 }
30
31 static_library("test_support") {
32   testonly = true
33   sources = [
34     "web_data_service_test_util.cc",
35     "web_data_service_test_util.h",
36   ]
37
38   deps = [
39     ":webdata_services",
40     "//base",
41     "//components/autofill/core/browser",
42     "//components/signin/core/browser",
43   ]
44 }