Chromium Code Reviews| Index: components/webdata_services.gypi |
| diff --git a/components/webdata_services.gypi b/components/webdata_services.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..65c9c87294fce2515b8941a2d614a7954d9e3adb |
| --- /dev/null |
| +++ b/components/webdata_services.gypi |
| @@ -0,0 +1,32 @@ |
| +# Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
| + 'targets': [ |
| + { |
| + 'target_name': 'webdata_services', |
| + 'type': 'static_library', |
| + 'include_dirs': [ |
| + '..', |
| + ], |
| + 'dependencies': [ |
| + '../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
|
| + '../sql/sql.gyp:sql', |
| + 'autofill_core_browser', |
| + 'password_manager_core_browser', |
| + 'search_engines', |
| + 'signin_core_browser', |
| + 'webdata_common', |
| + ], |
| + 'defines': [ |
|
jochen (gone - plz use gerrit)
2014/12/09 15:43:17
not needed
sdefresne
2014/12/12 16:53:37
Done.
|
| + 'WEBDATA_SERVICES_IMPLEMENTATION', |
| + ], |
| + 'sources': [ |
| + 'webdata_services/web_data_service_wrapper.cc', |
| + 'webdata_services/web_data_service_wrapper.h', |
| + '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.
|
| + ], |
| + }, |
| + ], |
| +} |