| 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", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "fileapi/file_system_types.h", | 25 "fileapi/file_system_types.h", |
| 26 "fileapi/file_system_util.cc", | 26 "fileapi/file_system_util.cc", |
| 27 "fileapi/file_system_util.h", | 27 "fileapi/file_system_util.h", |
| 28 "quota/quota_status_code.cc", | 28 "quota/quota_status_code.cc", |
| 29 "quota/quota_status_code.h", | 29 "quota/quota_status_code.h", |
| 30 "quota/quota_types.h", | 30 "quota/quota_types.h", |
| 31 "storage_common_export.h", | 31 "storage_common_export.h", |
| 32 ] | 32 ] |
| 33 | 33 |
| 34 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 34 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 35 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 35 configs += [ |
| 36 "//build/config/compiler:no_size_t_to_int_warning", |
| 37 "//build/config/compiler:wexit_time_destructors", |
| 38 ] |
| 36 | 39 |
| 37 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] | 40 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] |
| 38 | 41 |
| 39 deps = [ | 42 deps = [ |
| 40 "//base", | 43 "//base", |
| 41 "//base/third_party/dynamic_annotations", | 44 "//base/third_party/dynamic_annotations", |
| 42 "//net", | 45 "//net", |
| 43 "//third_party/WebKit/public:blink_headers", | 46 "//third_party/WebKit/public:blink_headers", |
| 44 "//url", | 47 "//url", |
| 45 ] | 48 ] |
| 46 } | 49 } |
| OLD | NEW |