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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 test("storage_unittests") { | 225 test("storage_unittests") { |
226 sources = [ | 226 sources = [ |
227 # This target is in the process of being populated. See | 227 # This target is in the process of being populated. See |
228 # http://crbug.com/653751 | 228 # http://crbug.com/653751 |
229 "blob/blob_data_builder_unittest.cc", | 229 "blob/blob_data_builder_unittest.cc", |
230 "blob/blob_flattener_unittest.cc", | 230 "blob/blob_flattener_unittest.cc", |
231 "blob/blob_memory_controller_unittest.cc", | 231 "blob/blob_memory_controller_unittest.cc", |
232 "blob/blob_slice_unittest.cc", | 232 "blob/blob_slice_unittest.cc", |
233 "blob/blob_storage_registry_unittest.cc", | 233 "blob/blob_storage_registry_unittest.cc", |
234 "blob/blob_transport_request_builder_unittest.cc", | 234 "blob/blob_transport_request_builder_unittest.cc", |
| 235 "database/database_quota_client_unittest.cc", |
| 236 "database/database_util_unittest.cc", |
| 237 "database/databases_table_unittest.cc", |
235 ] | 238 ] |
236 | 239 |
237 deps = [ | 240 deps = [ |
238 ":browser", | 241 ":browser", |
239 "//base/test:run_all_unittests", | 242 "//base/test:run_all_unittests", |
240 "//base/test:test_support", | 243 "//base/test:test_support", |
241 "//net:test_support", | 244 "//net:test_support", |
| 245 "//sql:test_support", |
242 "//testing/gtest", | 246 "//testing/gtest", |
243 ] | 247 ] |
244 } | 248 } |
OLD | NEW |