| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 } | 209 } |
| 210 | 210 |
| 211 executable("dump_file_system") { | 211 executable("dump_file_system") { |
| 212 sources = [ | 212 sources = [ |
| 213 "fileapi/dump_file_system.cc", | 213 "fileapi/dump_file_system.cc", |
| 214 ] | 214 ] |
| 215 | 215 |
| 216 deps = [ | 216 deps = [ |
| 217 ":browser", | 217 ":browser", |
| 218 "//base", | 218 "//base", |
| 219 "//build/config/sanitizers:deps", | 219 "//build/config:exe_and_shlib_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("unittests") { | 225 source_set("unittests") { |
| 226 testonly = true | 226 testonly = true |
| 227 | 227 |
| 228 sources = [ | 228 sources = [ |
| 229 # This target is in the process of being populated. See | 229 # This target is in the process of being populated. See |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 ] | 328 ] |
| 329 | 329 |
| 330 deps = [ | 330 deps = [ |
| 331 ":browser", | 331 ":browser", |
| 332 "//base/test:test_support", | 332 "//base/test:test_support", |
| 333 "//net:test_support", | 333 "//net:test_support", |
| 334 "//testing/gtest", | 334 "//testing/gtest", |
| 335 "//third_party/leveldatabase", | 335 "//third_party/leveldatabase", |
| 336 ] | 336 ] |
| 337 } | 337 } |
| OLD | NEW |