| 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 import("//testing/test.gni") | 4 import("//testing/test.gni") |
| 5 | 5 |
| 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", |
| 11 "blob/blob_data_handle.cc", | 11 "blob/blob_data_handle.cc", |
| 12 "blob/blob_data_handle.h", | 12 "blob/blob_data_handle.h", |
| 13 "blob/blob_data_item.cc", | 13 "blob/blob_data_item.cc", |
| 14 "blob/blob_data_item.h", | 14 "blob/blob_data_item.h", |
| 15 "blob/blob_data_snapshot.cc", | 15 "blob/blob_data_snapshot.cc", |
| 16 "blob/blob_data_snapshot.h", | 16 "blob/blob_data_snapshot.h", |
| 17 "blob/blob_entry.cc", | 17 "blob/blob_entry.cc", |
| 18 "blob/blob_entry.h", | 18 "blob/blob_entry.h", |
| 19 "blob/blob_impl.cc", |
| 20 "blob/blob_impl.h", |
| 19 "blob/blob_memory_controller.cc", | 21 "blob/blob_memory_controller.cc", |
| 20 "blob/blob_memory_controller.h", | 22 "blob/blob_memory_controller.h", |
| 21 "blob/blob_reader.cc", | 23 "blob/blob_reader.cc", |
| 22 "blob/blob_reader.h", | 24 "blob/blob_reader.h", |
| 25 "blob/blob_registry_impl.cc", |
| 26 "blob/blob_registry_impl.h", |
| 23 "blob/blob_storage_context.cc", | 27 "blob/blob_storage_context.cc", |
| 24 "blob/blob_storage_context.h", | 28 "blob/blob_storage_context.h", |
| 25 "blob/blob_storage_registry.cc", | 29 "blob/blob_storage_registry.cc", |
| 26 "blob/blob_storage_registry.h", | 30 "blob/blob_storage_registry.h", |
| 27 "blob/blob_transport_host.cc", | 31 "blob/blob_transport_host.cc", |
| 28 "blob/blob_transport_host.h", | 32 "blob/blob_transport_host.h", |
| 29 "blob/blob_transport_request_builder.cc", | 33 "blob/blob_transport_request_builder.cc", |
| 30 "blob/blob_transport_request_builder.h", | 34 "blob/blob_transport_request_builder.h", |
| 31 "blob/blob_url_request_job.cc", | 35 "blob/blob_url_request_job.cc", |
| 32 "blob/blob_url_request_job.h", | 36 "blob/blob_url_request_job.h", |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 configs += [ | 192 configs += [ |
| 189 "//build/config:precompiled_headers", | 193 "//build/config:precompiled_headers", |
| 190 | 194 |
| 191 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 195 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 192 "//build/config/compiler:no_size_t_to_int_warning", | 196 "//build/config/compiler:no_size_t_to_int_warning", |
| 193 "//build/config/compiler:wexit_time_destructors", | 197 "//build/config/compiler:wexit_time_destructors", |
| 194 ] | 198 ] |
| 195 | 199 |
| 196 public_deps = [ | 200 public_deps = [ |
| 197 "//storage/common", | 201 "//storage/common", |
| 202 "//third_party/WebKit/public:blob_mojo_bindings", |
| 198 ] | 203 ] |
| 199 deps = [ | 204 deps = [ |
| 200 "//base", | 205 "//base", |
| 201 "//base:i18n", | 206 "//base:i18n", |
| 202 "//base/third_party/dynamic_annotations", | 207 "//base/third_party/dynamic_annotations", |
| 208 "//mojo/common", |
| 209 "//mojo/public/cpp/system", |
| 203 "//net", | 210 "//net", |
| 211 "//services/service_manager", |
| 204 "//sql", | 212 "//sql", |
| 205 "//third_party/leveldatabase", | 213 "//third_party/leveldatabase", |
| 206 "//third_party/sqlite", | 214 "//third_party/sqlite", |
| 207 "//url", | 215 "//url", |
| 208 ] | 216 ] |
| 209 } | 217 } |
| 210 | 218 |
| 211 executable("dump_file_system") { | 219 executable("dump_file_system") { |
| 212 sources = [ | 220 sources = [ |
| 213 "fileapi/dump_file_system.cc", | 221 "fileapi/dump_file_system.cc", |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 ] | 336 ] |
| 329 | 337 |
| 330 deps = [ | 338 deps = [ |
| 331 ":browser", | 339 ":browser", |
| 332 "//base/test:test_support", | 340 "//base/test:test_support", |
| 333 "//net:test_support", | 341 "//net:test_support", |
| 334 "//testing/gtest", | 342 "//testing/gtest", |
| 335 "//third_party/leveldatabase", | 343 "//third_party/leveldatabase", |
| 336 ] | 344 ] |
| 337 } | 345 } |
| OLD | NEW |