OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'encryptor', | 8 'target_name': 'encryptor', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'include_dirs': [ | 10 'include_dirs': [ |
(...skipping 12 matching lines...) Expand all Loading... |
23 'webdata/encryptor/encryptor_win.cc', | 23 'webdata/encryptor/encryptor_win.cc', |
24 ], | 24 ], |
25 'conditions': [ | 25 'conditions': [ |
26 ['OS=="mac"', { | 26 ['OS=="mac"', { |
27 'sources!': [ | 27 'sources!': [ |
28 'webdata/encryptor/encryptor_posix.cc', | 28 'webdata/encryptor/encryptor_posix.cc', |
29 ], | 29 ], |
30 }], | 30 }], |
31 ], | 31 ], |
32 }, | 32 }, |
| 33 { |
| 34 'target_name': 'webdata_common', |
| 35 'type': '<(component)', |
| 36 'include_dirs': [ |
| 37 '..', |
| 38 ], |
| 39 'dependencies': [ |
| 40 '../base/base.gyp:base', |
| 41 '../content/content.gyp:content_browser', |
| 42 '../sql/sql.gyp:sql', |
| 43 ], |
| 44 'defines': [ |
| 45 'WEBDATA_IMPLEMENTATION', |
| 46 ], |
| 47 'sources': [ |
| 48 'webdata/common/web_database.cc', |
| 49 'webdata/common/web_database.h', |
| 50 'webdata/common/web_database_service.cc', |
| 51 'webdata/common/web_database_service.h', |
| 52 'webdata/common/web_database_table.cc', |
| 53 'webdata/common/web_database_table.h', |
| 54 'webdata/common/web_data_request_manager.cc', |
| 55 'webdata/common/web_data_request_manager.h', |
| 56 'webdata/common/web_data_results.h', |
| 57 'webdata/common/web_data_service_base.cc', |
| 58 'webdata/common/web_data_service_base.h', |
| 59 'webdata/common/web_data_service_consumer.h', |
| 60 'webdata/common/webdata_constants.cc', |
| 61 'webdata/common/webdata_constants.h', |
| 62 'webdata/common/webdata_export.h' |
| 63 ], |
| 64 }, |
33 ], | 65 ], |
34 } | 66 } |
OLD | NEW |