| 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.h", |
| 10 "blob_storage/blob_item_bytes_response.cc", |
| 11 "blob_storage/blob_item_bytes_response.h", |
| 12 "blob_storage/blob_storage_constants.h", |
| 9 "data_element.cc", | 13 "data_element.cc", |
| 10 "data_element.h", | 14 "data_element.h", |
| 11 "database/database_connections.cc", | 15 "database/database_connections.cc", |
| 12 "database/database_connections.h", | 16 "database/database_connections.h", |
| 13 "database/database_identifier.cc", | 17 "database/database_identifier.cc", |
| 14 "database/database_identifier.h", | 18 "database/database_identifier.h", |
| 15 "fileapi/directory_entry.cc", | 19 "fileapi/directory_entry.cc", |
| 16 "fileapi/directory_entry.h", | 20 "fileapi/directory_entry.h", |
| 17 "fileapi/file_system_info.cc", | 21 "fileapi/file_system_info.cc", |
| 18 "fileapi/file_system_info.h", | 22 "fileapi/file_system_info.h", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 32 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] | 36 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] |
| 33 | 37 |
| 34 deps = [ | 38 deps = [ |
| 35 "//base", | 39 "//base", |
| 36 "//base/third_party/dynamic_annotations", | 40 "//base/third_party/dynamic_annotations", |
| 37 "//net", | 41 "//net", |
| 38 "//url", | 42 "//url", |
| 39 "//third_party/WebKit/public:blink_headers", | 43 "//third_party/WebKit/public:blink_headers", |
| 40 ] | 44 ] |
| 41 } | 45 } |
| OLD | NEW |