Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: components/webdata_services/BUILD.gn

Issue 777863002: Introduce new component webdata_services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile as static_library instead of component Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/webdata_services.gypi ('k') | components/webdata_services/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 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/keyed_service/core",
17 "//components/password_manager/core/browser",
18 "//components/search_engines",
19 "//components/signin/core/browser",
20 "//components/webdata/common",
21 "//sql",
22 ]
23 }
24
25 source_set("test_support") {
26 testonly = true
27 sources = [
28 "web_data_service_test_util.cc",
29 "web_data_service_test_util.h",
30 ]
31
32 deps = [
33 ":webdata_services",
34 "//base",
35 "//components/autofill/core/browser",
36 "//components/signin/core/browser",
37 ]
38 }
OLDNEW
« no previous file with comments | « components/webdata_services.gypi ('k') | components/webdata_services/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698