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_common', 9 'type': '<(component)', 10 'include_dirs': [ 11 '..', 12 ], 13 'dependencies': [ 14 '../base/base.gyp:base', 15 '../content/content.gyp:content_browser', 16 '../sql/sql.gyp:sql', 17 ], 18 'defines': [ 19 'WEBDATA_IMPLEMENTATION', 20 ], 21 'sources': [ 22 'webdata/common/web_database.cc', 23 'webdata/common/web_database.h', 24 'webdata/common/web_database_service.cc', 25 'webdata/common/web_database_service.h', 26 'webdata/common/web_database_table.cc', 27 'webdata/common/web_database_table.h', 28 'webdata/common/web_data_request_manager.cc', 29 'webdata/common/web_data_request_manager.h', 30 'webdata/common/web_data_results.h', 31 'webdata/common/web_data_service_backend.cc', 32 'webdata/common/web_data_service_backend.h', 33 'webdata/common/web_data_service_base.cc', 34 'webdata/common/web_data_service_base.h', 35 'webdata/common/web_data_service_consumer.h', 36 'webdata/common/webdata_constants.cc', 37 'webdata/common/webdata_constants.h', 38 'webdata/common/webdata_export.h' 39 ], 40 }, 41 ], 42} 43