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