| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 181 |
| 182 defines = [ "STORAGE_BROWSER_IMPLEMENTATION" ] | 182 defines = [ "STORAGE_BROWSER_IMPLEMENTATION" ] |
| 183 configs += [ | 183 configs += [ |
| 184 "//build/config:precompiled_headers", | 184 "//build/config:precompiled_headers", |
| 185 | 185 |
| 186 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 186 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 187 "//build/config/compiler:no_size_t_to_int_warning", | 187 "//build/config/compiler:no_size_t_to_int_warning", |
| 188 "//build/config/compiler:wexit_time_destructors", | 188 "//build/config/compiler:wexit_time_destructors", |
| 189 ] | 189 ] |
| 190 | 190 |
| 191 public_deps = [ |
| 192 "//storage/common", |
| 193 ] |
| 191 deps = [ | 194 deps = [ |
| 192 "//base", | 195 "//base", |
| 193 "//base:i18n", | 196 "//base:i18n", |
| 194 "//base/third_party/dynamic_annotations", | 197 "//base/third_party/dynamic_annotations", |
| 195 "//net", | 198 "//net", |
| 196 "//sql", | 199 "//sql", |
| 197 "//storage/common", | |
| 198 "//third_party/leveldatabase", | 200 "//third_party/leveldatabase", |
| 199 "//third_party/sqlite", | 201 "//third_party/sqlite", |
| 200 "//url", | 202 "//url", |
| 201 ] | 203 ] |
| 202 | 204 |
| 203 # TODO(GYP) support chrome_multiple_dll | 205 # TODO(GYP) support chrome_multiple_dll |
| 204 #['chrome_multiple_dll!=1', { | 206 #['chrome_multiple_dll!=1', { |
| 205 # 'dependencies': [ | 207 # 'dependencies': [ |
| 206 # '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 208 # '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| 207 # ], | 209 # ], |
| 208 #}], | 210 #}], |
| 209 } | 211 } |
| 210 | 212 |
| 211 executable("dump_file_system") { | 213 executable("dump_file_system") { |
| 212 sources = [ | 214 sources = [ |
| 213 "fileapi/dump_file_system.cc", | 215 "fileapi/dump_file_system.cc", |
| 214 ] | 216 ] |
| 215 | 217 |
| 216 deps = [ | 218 deps = [ |
| 217 ":browser", | 219 ":browser", |
| 218 "//base", | 220 "//base", |
| 219 "//build/config/sanitizers:deps", | 221 "//build/config/sanitizers:deps", |
| 220 "//storage/common", | 222 "//storage/common", |
| 221 ] | 223 ] |
| 222 } | 224 } |
| OLD | NEW |