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

Side by Side Diff: components/webdata_services.gypi

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
OLDNEW
(Empty)
1 # Copyright (c) 2013 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 {
6 'targets': [
7 {
8 # GN version: //components/webdata_services
9 'target_name': 'webdata_services',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 '../base/base.gyp:base',
16 '../sql/sql.gyp:sql',
17 'autofill_core_browser',
18 'keyed_service_core',
19 'password_manager_core_browser',
20 'search_engines',
21 'signin_core_browser',
22 'webdata_common',
23 ],
24 'sources': [
25 'webdata_services/web_data_service_wrapper.cc',
26 'webdata_services/web_data_service_wrapper.h',
27 ],
28 },
29 {
30 # GN version: //components/webdata_services:test_support
31 'target_name': 'webdata_services_test_support',
32 'type': 'static_library',
33 'include_dirs': [
34 '..',
35 ],
36 'dependencies': [
37 '../base/base.gyp:base',
38 'autofill_core_browser',
39 'signin_core_browser',
40 'webdata_services',
41 ],
42 'sources': [
43 'webdata_services/web_data_service_test_util.cc',
44 'webdata_services/web_data_service_test_util.h',
45 ],
46 },
47 ],
48 }
OLDNEW
« no previous file with comments | « components/webdata/common/web_data_service_test_util.cc ('k') | components/webdata_services/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698