OLD | NEW |
---|---|
(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 } | |
OLD | NEW |