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

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: Fix component build & gn build 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
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 component("webdata_services") {
tfarina 2014/12/09 15:48:27 could you run `gn check //components/webdata_servi
jochen (gone - plz use gerrit) 2014/12/09 15:52:28 uh, right, the GN configuration says component and
sdefresne 2014/12/12 16:53:37 Done, and added the missing dependency.
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698