| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 # GN version: //storage/common | 11 # GN version: //storage/common |
| 12 'target_name': 'storage_common', | 12 'target_name': 'storage_common', |
| 13 'type': '<(component)', | 13 'type': '<(component)', |
| 14 'variables': { 'enable_wexit_time_destructors': 1, }, | 14 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 '<(DEPTH)/base/base.gyp:base', | 16 '<(DEPTH)/base/base.gyp:base', |
| 17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 18 '<(DEPTH)/net/net.gyp:net', | 18 '<(DEPTH)/net/net.gyp:net', |
| 19 '<(DEPTH)/url/url.gyp:url_lib', | 19 '<(DEPTH)/url/url.gyp:url_lib', |
| 20 ], | 20 ], |
| 21 'defines': ['STORAGE_COMMON_IMPLEMENTATION'], | 21 'defines': ['STORAGE_COMMON_IMPLEMENTATION'], |
| 22 'sources': [ | 22 'sources': [ |
| 23 'common/blob_storage/blob_item_bytes_request.h', |
| 24 'common/blob_storage/blob_item_bytes_response.h', |
| 25 'common/blob_storage/blob_item_bytes_response.cc', |
| 26 'common/blob_storage/blob_storage_constants.h', |
| 23 'common/data_element.cc', | 27 'common/data_element.cc', |
| 24 'common/data_element.h', | 28 'common/data_element.h', |
| 25 'common/database/database_connections.cc', | 29 'common/database/database_connections.cc', |
| 26 'common/database/database_connections.h', | 30 'common/database/database_connections.h', |
| 27 'common/database/database_identifier.cc', | 31 'common/database/database_identifier.cc', |
| 28 'common/database/database_identifier.h', | 32 'common/database/database_identifier.h', |
| 29 'common/fileapi/directory_entry.cc', | 33 'common/fileapi/directory_entry.cc', |
| 30 'common/fileapi/directory_entry.h', | 34 'common/fileapi/directory_entry.h', |
| 31 'common/fileapi/file_system_info.cc', | 35 'common/fileapi/file_system_info.cc', |
| 32 'common/fileapi/file_system_info.h', | 36 'common/fileapi/file_system_info.h', |
| 33 'common/fileapi/file_system_mount_option.h', | 37 'common/fileapi/file_system_mount_option.h', |
| 34 'common/fileapi/file_system_types.h', | 38 'common/fileapi/file_system_types.h', |
| 35 'common/fileapi/file_system_util.cc', | 39 'common/fileapi/file_system_util.cc', |
| 36 'common/fileapi/file_system_util.h', | 40 'common/fileapi/file_system_util.h', |
| 37 'common/quota/quota_status_code.cc', | 41 'common/quota/quota_status_code.cc', |
| 38 'common/quota/quota_status_code.h', | 42 'common/quota/quota_status_code.h', |
| 39 'common/quota/quota_types.h', | 43 'common/quota/quota_types.h', |
| 40 'common/storage_common_export.h', | 44 'common/storage_common_export.h', |
| 41 ], | 45 ], |
| 42 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 46 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 43 'msvs_disabled_warnings': [ 4267, ], | 47 'msvs_disabled_warnings': [ 4267, ], |
| 44 }, | 48 }, |
| 45 ], | 49 ], |
| 46 } | 50 } |
| OLD | NEW |