| 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 component("common") { | 5 component("common") { |
| 6 output_name = "storage_common" | 6 output_name = "storage_common" |
| 7 sources = [ | 7 sources = [ |
| 8 "blob_storage/blob_item_bytes_request.cc", | 8 "blob_storage/blob_item_bytes_request.cc", |
| 9 "blob_storage/blob_item_bytes_request.h", | 9 "blob_storage/blob_item_bytes_request.h", |
| 10 "blob_storage/blob_item_bytes_response.cc", | 10 "blob_storage/blob_item_bytes_response.cc", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "fileapi/file_system_info.cc", | 22 "fileapi/file_system_info.cc", |
| 23 "fileapi/file_system_info.h", | 23 "fileapi/file_system_info.h", |
| 24 "fileapi/file_system_mount_option.h", | 24 "fileapi/file_system_mount_option.h", |
| 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 "storage_histograms.cc", |
| 33 "storage_histograms.h", |
| 32 ] | 34 ] |
| 33 | 35 |
| 34 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 36 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 35 configs += [ | 37 configs += [ |
| 36 "//build/config/compiler:no_size_t_to_int_warning", | 38 "//build/config/compiler:no_size_t_to_int_warning", |
| 37 "//build/config/compiler:wexit_time_destructors", | 39 "//build/config/compiler:wexit_time_destructors", |
| 38 ] | 40 ] |
| 39 | 41 |
| 40 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] | 42 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] |
| 41 | 43 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 58 ] | 60 ] |
| 59 | 61 |
| 60 deps = [ | 62 deps = [ |
| 61 ":common", | 63 ":common", |
| 62 "//base/test:run_all_unittests", | 64 "//base/test:run_all_unittests", |
| 63 "//base/test:test_support", | 65 "//base/test:test_support", |
| 64 "//testing/gtest", | 66 "//testing/gtest", |
| 65 "//url", | 67 "//url", |
| 66 ] | 68 ] |
| 67 } | 69 } |
| OLD | NEW |