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 "blob/blob_data_builder.cc", | 9 "blob/blob_data_builder.cc", |
10 "blob/blob_data_builder.h", | 10 "blob/blob_data_builder.h", |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 "quota/storage_monitor.h", | 164 "quota/storage_monitor.h", |
165 "quota/storage_observer.cc", | 165 "quota/storage_observer.cc", |
166 "quota/storage_observer.h", | 166 "quota/storage_observer.h", |
167 "quota/usage_tracker.cc", | 167 "quota/usage_tracker.cc", |
168 "quota/usage_tracker.h", | 168 "quota/usage_tracker.h", |
169 "storage_browser_export.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 "//build/config:precompiled_headers", | |
175 | |
176 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 174 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
177 "//build/config/compiler:no_size_t_to_int_warning", | 175 "//build/config/compiler:no_size_t_to_int_warning", |
178 "//build/config/compiler:wexit_time_destructors", | 176 "//build/config/compiler:wexit_time_destructors", |
179 ] | 177 ] |
180 | 178 |
181 deps = [ | 179 deps = [ |
182 "//base", | 180 "//base", |
183 "//base:i18n", | 181 "//base:i18n", |
184 "//base/third_party/dynamic_annotations", | 182 "//base/third_party/dynamic_annotations", |
185 "//net", | 183 "//net", |
(...skipping 16 matching lines...) Expand all Loading... |
202 sources = [ | 200 sources = [ |
203 "fileapi/dump_file_system.cc", | 201 "fileapi/dump_file_system.cc", |
204 ] | 202 ] |
205 | 203 |
206 deps = [ | 204 deps = [ |
207 ":browser", | 205 ":browser", |
208 "//base", | 206 "//base", |
209 "//storage/common", | 207 "//storage/common", |
210 ] | 208 ] |
211 } | 209 } |
OLD | NEW |