| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # GYP version: storage/storage_common.gyp:storage_common | 5 # GYP version: storage/storage_common.gyp:storage_common |
| 6 component("common") { | 6 component("common") { |
| 7 output_name = "storage_common" | 7 output_name = "storage_common" |
| 8 sources = [ | 8 sources = [ |
| 9 "blob_storage/blob_item_bytes_request.cc", | 9 "blob_storage/blob_item_bytes_request.cc", |
| 10 "blob_storage/blob_item_bytes_request.h", | 10 "blob_storage/blob_item_bytes_request.h", |
| 11 "blob_storage/blob_item_bytes_response.cc", | 11 "blob_storage/blob_item_bytes_response.cc", |
| 12 "blob_storage/blob_item_bytes_response.h", | 12 "blob_storage/blob_item_bytes_response.h", |
| 13 "blob_storage/blob_storage_constants.cc", |
| 13 "blob_storage/blob_storage_constants.h", | 14 "blob_storage/blob_storage_constants.h", |
| 14 "data_element.cc", | 15 "data_element.cc", |
| 15 "data_element.h", | 16 "data_element.h", |
| 16 "database/database_connections.cc", | 17 "database/database_connections.cc", |
| 17 "database/database_connections.h", | 18 "database/database_connections.h", |
| 18 "database/database_identifier.cc", | 19 "database/database_identifier.cc", |
| 19 "database/database_identifier.h", | 20 "database/database_identifier.h", |
| 20 "fileapi/directory_entry.cc", | 21 "fileapi/directory_entry.cc", |
| 21 "fileapi/directory_entry.h", | 22 "fileapi/directory_entry.h", |
| 22 "fileapi/file_system_info.cc", | 23 "fileapi/file_system_info.cc", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 40 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] | 41 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] |
| 41 | 42 |
| 42 deps = [ | 43 deps = [ |
| 43 "//base", | 44 "//base", |
| 44 "//base/third_party/dynamic_annotations", | 45 "//base/third_party/dynamic_annotations", |
| 45 "//net", | 46 "//net", |
| 46 "//third_party/WebKit/public:blink_headers", | 47 "//third_party/WebKit/public:blink_headers", |
| 47 "//url", | 48 "//url", |
| 48 ] | 49 ] |
| 49 } | 50 } |
| OLD | NEW |