| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 | 215 |
| 216 deps = [ | 216 deps = [ |
| 217 ":browser", | 217 ":browser", |
| 218 "//base", | 218 "//base", |
| 219 "//build/config/sanitizers:deps", | 219 "//build/config/sanitizers:deps", |
| 220 "//build/win:default_exe_manifest", | 220 "//build/win:default_exe_manifest", |
| 221 "//storage/common", | 221 "//storage/common", |
| 222 ] | 222 ] |
| 223 } | 223 } |
| 224 | 224 |
| 225 source_set("gn_repro_sources") { |
| 226 sources = [ |
| 227 "gn_repro.cc", |
| 228 ] |
| 229 } |
| 230 |
| 231 static_library("gn_repro") { |
| 232 deps = [ |
| 233 ":gn_repro_sources", |
| 234 ] |
| 235 } |
| 236 |
| 225 test("storage_unittests") { | 237 test("storage_unittests") { |
| 226 sources = [ | 238 sources = [ |
| 227 # This target is in the process of being populated. See | 239 # This target is in the process of being populated. See |
| 228 # http://crbug.com/653751 | 240 # http://crbug.com/653751 |
| 229 "blob/blob_data_builder_unittest.cc", | 241 "blob/blob_data_builder_unittest.cc", |
| 230 "blob/blob_flattener_unittest.cc", | 242 "blob/blob_flattener_unittest.cc", |
| 231 "blob/blob_memory_controller_unittest.cc", | 243 "blob/blob_memory_controller_unittest.cc", |
| 232 "blob/blob_slice_unittest.cc", | 244 "blob/blob_slice_unittest.cc", |
| 233 "blob/blob_storage_context_unittest.cc", | 245 "blob/blob_storage_context_unittest.cc", |
| 234 "blob/blob_storage_registry_unittest.cc", | 246 "blob/blob_storage_registry_unittest.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 245 "fileapi/native_file_util_unittest.cc", | 257 "fileapi/native_file_util_unittest.cc", |
| 246 "fileapi/quota/quota_backend_impl_unittest.cc", | 258 "fileapi/quota/quota_backend_impl_unittest.cc", |
| 247 "fileapi/quota/quota_reservation_manager_unittest.cc", | 259 "fileapi/quota/quota_reservation_manager_unittest.cc", |
| 248 "fileapi/sandbox_isolated_origin_database_unittest.cc", | 260 "fileapi/sandbox_isolated_origin_database_unittest.cc", |
| 249 "fileapi/sandbox_prioritized_origin_database_unittest.cc", | 261 "fileapi/sandbox_prioritized_origin_database_unittest.cc", |
| 250 "fileapi/timed_task_helper_unittest.cc", | 262 "fileapi/timed_task_helper_unittest.cc", |
| 251 ] | 263 ] |
| 252 | 264 |
| 253 deps = [ | 265 deps = [ |
| 254 ":browser", | 266 ":browser", |
| 267 ":gn_repro", |
| 255 "//base/test:run_all_unittests", | 268 "//base/test:run_all_unittests", |
| 256 "//base/test:test_support", | 269 "//base/test:test_support", |
| 257 "//net:test_support", | 270 "//net:test_support", |
| 258 "//sql:test_support", | 271 "//sql:test_support", |
| 259 "//testing/gtest", | 272 "//testing/gtest", |
| 260 "//third_party/leveldatabase", | 273 "//third_party/leveldatabase", |
| 261 ] | 274 ] |
| 262 } | 275 } |
| OLD | NEW |