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

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: 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 (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 'target_name': 'webdata_services',
9 'type': 'static_library',
10 'include_dirs': [
11 '..',
12 ],
13 'dependencies': [
14 '../base/base.gyp:base',
jochen (gone - plz use gerrit) 2014/12/09 15:43:17 you'll need DEPS entries at least for the other c
sdefresne 2014/12/12 16:53:37 //components/webdata_services/DEPS already has the
15 '../sql/sql.gyp:sql',
16 'autofill_core_browser',
17 'password_manager_core_browser',
18 'search_engines',
19 'signin_core_browser',
20 'webdata_common',
21 ],
22 'defines': [
jochen (gone - plz use gerrit) 2014/12/09 15:43:17 not needed
sdefresne 2014/12/12 16:53:37 Done.
23 'WEBDATA_SERVICES_IMPLEMENTATION',
24 ],
25 'sources': [
26 'webdata_services/web_data_service_wrapper.cc',
27 'webdata_services/web_data_service_wrapper.h',
28 'webdata_services/webdata_services_export.h',
jochen (gone - plz use gerrit) 2014/12/09 15:43:17 not needed. since you declare it as a static libra
sdefresne 2014/12/12 16:53:37 Done.
29 ],
30 },
31 ],
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698