| 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", |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 # This target is in the process of being populated. See | 229 # This target is in the process of being populated. See |
| 230 # http://crbug.com/653751 | 230 # http://crbug.com/653751 |
| 231 "blob/blob_data_builder_unittest.cc", | 231 "blob/blob_data_builder_unittest.cc", |
| 232 "blob/blob_flattener_unittest.cc", | 232 "blob/blob_flattener_unittest.cc", |
| 233 "blob/blob_memory_controller_unittest.cc", | 233 "blob/blob_memory_controller_unittest.cc", |
| 234 "blob/blob_reader_unittest.cc", | 234 "blob/blob_reader_unittest.cc", |
| 235 "blob/blob_slice_unittest.cc", | 235 "blob/blob_slice_unittest.cc", |
| 236 "blob/blob_storage_context_unittest.cc", | 236 "blob/blob_storage_context_unittest.cc", |
| 237 "blob/blob_storage_registry_unittest.cc", | 237 "blob/blob_storage_registry_unittest.cc", |
| 238 "blob/blob_transport_request_builder_unittest.cc", | 238 "blob/blob_transport_request_builder_unittest.cc", |
| 239 "blob/blob_url_request_job_unittest.cc", | |
| 240 "database/database_quota_client_unittest.cc", | 239 "database/database_quota_client_unittest.cc", |
| 241 "database/database_tracker_unittest.cc", | 240 "database/database_tracker_unittest.cc", |
| 242 "database/database_util_unittest.cc", | 241 "database/database_util_unittest.cc", |
| 243 "database/databases_table_unittest.cc", | 242 "database/databases_table_unittest.cc", |
| 244 "fileapi/copy_or_move_file_validator_unittest.cc", | 243 "fileapi/copy_or_move_file_validator_unittest.cc", |
| 245 "fileapi/copy_or_move_operation_delegate_unittest.cc", | 244 "fileapi/copy_or_move_operation_delegate_unittest.cc", |
| 246 "fileapi/dragged_file_util_unittest.cc", | 245 "fileapi/dragged_file_util_unittest.cc", |
| 247 "fileapi/external_mount_points_unittest.cc", | 246 "fileapi/external_mount_points_unittest.cc", |
| 248 "fileapi/file_system_context_unittest.cc", | 247 "fileapi/file_system_context_unittest.cc", |
| 249 "fileapi/file_system_dir_url_request_job_unittest.cc", | 248 "fileapi/file_system_dir_url_request_job_unittest.cc", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 ] | 327 ] |
| 329 | 328 |
| 330 deps = [ | 329 deps = [ |
| 331 ":browser", | 330 ":browser", |
| 332 "//base/test:test_support", | 331 "//base/test:test_support", |
| 333 "//net:test_support", | 332 "//net:test_support", |
| 334 "//testing/gtest", | 333 "//testing/gtest", |
| 335 "//third_party/leveldatabase", | 334 "//third_party/leveldatabase", |
| 336 ] | 335 ] |
| 337 } | 336 } |
| OLD | NEW |