| 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_browser.gyp:storage | 5 # GYP version: storage/storage_browser.gyp:storage |
| 6 component("browser") { | 6 component("browser") { |
| 7 output_name = "storage_browser" | 7 output_name = "storage_browser" |
| 8 sources = [ | 8 sources = [ |
| 9 "storage_browser_export.h", | |
| 10 "blob/blob_data_builder.cc", | 9 "blob/blob_data_builder.cc", |
| 11 "blob/blob_data_builder.h", | 10 "blob/blob_data_builder.h", |
| 12 "blob/blob_data_handle.cc", | 11 "blob/blob_data_handle.cc", |
| 13 "blob/blob_data_handle.h", | 12 "blob/blob_data_handle.h", |
| 14 "blob/blob_data_item.cc", | 13 "blob/blob_data_item.cc", |
| 15 "blob/blob_data_item.h", | 14 "blob/blob_data_item.h", |
| 16 "blob/blob_data_snapshot.cc", | 15 "blob/blob_data_snapshot.cc", |
| 17 "blob/blob_data_snapshot.h", | 16 "blob/blob_data_snapshot.h", |
| 18 "blob/blob_storage_context.cc", | 17 "blob/blob_storage_context.cc", |
| 19 "blob/blob_storage_context.h", | 18 "blob/blob_storage_context.h", |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 "quota/quota_temporary_storage_evictor.cc", | 159 "quota/quota_temporary_storage_evictor.cc", |
| 161 "quota/quota_temporary_storage_evictor.h", | 160 "quota/quota_temporary_storage_evictor.h", |
| 162 "quota/special_storage_policy.cc", | 161 "quota/special_storage_policy.cc", |
| 163 "quota/special_storage_policy.h", | 162 "quota/special_storage_policy.h", |
| 164 "quota/storage_monitor.cc", | 163 "quota/storage_monitor.cc", |
| 165 "quota/storage_monitor.h", | 164 "quota/storage_monitor.h", |
| 166 "quota/storage_observer.cc", | 165 "quota/storage_observer.cc", |
| 167 "quota/storage_observer.h", | 166 "quota/storage_observer.h", |
| 168 "quota/usage_tracker.cc", | 167 "quota/usage_tracker.cc", |
| 169 "quota/usage_tracker.h", | 168 "quota/usage_tracker.h", |
| 169 "storage_browser_export.h", |
| 170 ] | 170 ] |
| 171 | 171 |
| 172 defines = [ "STORAGE_BROWSER_IMPLEMENTATION" ] | 172 defines = [ "STORAGE_BROWSER_IMPLEMENTATION" ] |
| 173 configs += [ | 173 configs += [ |
| 174 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 174 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 175 "//build/config/compiler:no_size_t_to_int_warning", | 175 "//build/config/compiler:no_size_t_to_int_warning", |
| 176 "//build/config/compiler:wexit_time_destructors", | 176 "//build/config/compiler:wexit_time_destructors", |
| 177 ] | 177 ] |
| 178 | 178 |
| 179 deps = [ | 179 deps = [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 200 sources = [ | 200 sources = [ |
| 201 "fileapi/dump_file_system.cc", | 201 "fileapi/dump_file_system.cc", |
| 202 ] | 202 ] |
| 203 | 203 |
| 204 deps = [ | 204 deps = [ |
| 205 ":browser", | 205 ":browser", |
| 206 "//base", | 206 "//base", |
| 207 "//storage/common", | 207 "//storage/common", |
| 208 ] | 208 ] |
| 209 } | 209 } |
| OLD | NEW |