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 | 4 |
5 # GYP version: storage/storage_browser.gyp:storage | 5 # GYP version: storage/storage_browser.gyp:storage |
6 component("browser") { | 6 component("browser") { |
7 output_name = "storage_browser" | 7 output_name = "storage_browser" |
8 sources = [ | 8 sources = [ |
9 "blob/blob_async_builder_host.cc", | 9 "blob/blob_async_builder_host.cc", |
10 "blob/blob_async_builder_host.h", | 10 "blob/blob_async_builder_host.h", |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 deps = [ | 194 deps = [ |
195 "//base", | 195 "//base", |
196 "//base:i18n", | 196 "//base:i18n", |
197 "//base/third_party/dynamic_annotations", | 197 "//base/third_party/dynamic_annotations", |
198 "//net", | 198 "//net", |
199 "//sql", | 199 "//sql", |
200 "//third_party/leveldatabase", | 200 "//third_party/leveldatabase", |
201 "//third_party/sqlite", | 201 "//third_party/sqlite", |
202 "//url", | 202 "//url", |
203 ] | 203 ] |
204 | |
205 # TODO(GYP) support chrome_multiple_dll | |
206 #['chrome_multiple_dll!=1', { | |
207 # 'dependencies': [ | |
208 # '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | |
209 # ], | |
210 #}], | |
211 } | 204 } |
212 | 205 |
213 executable("dump_file_system") { | 206 executable("dump_file_system") { |
214 sources = [ | 207 sources = [ |
215 "fileapi/dump_file_system.cc", | 208 "fileapi/dump_file_system.cc", |
216 ] | 209 ] |
217 | 210 |
218 deps = [ | 211 deps = [ |
219 ":browser", | 212 ":browser", |
220 "//base", | 213 "//base", |
221 "//build/config/sanitizers:deps", | 214 "//build/config/sanitizers:deps", |
222 "//build/win:default_exe_manifest", | 215 "//build/win:default_exe_manifest", |
223 "//storage/common", | 216 "//storage/common", |
224 ] | 217 ] |
225 } | 218 } |
OLD | NEW |