| 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 component("storage") { | 5 component("storage") { |
| 6 output_name = "storage" | 6 output_name = "storage" |
| 7 sources = [ | 7 sources = [ |
| 8 "storage_browser_export.h", | 8 "storage_browser_export.h", |
| 9 "blob/blob_data_handle.cc", | 9 "blob/blob_data_handle.cc", |
| 10 "blob/blob_data_handle.h", | 10 "blob/blob_data_handle.h", |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 if (is_win) { | 157 if (is_win) { |
| 158 cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations. | 158 cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations. |
| 159 } | 159 } |
| 160 | 160 |
| 161 deps = [ | 161 deps = [ |
| 162 "//base", | 162 "//base", |
| 163 "//base:i18n", | 163 "//base:i18n", |
| 164 "//base/third_party/dynamic_annotations", | 164 "//base/third_party/dynamic_annotations", |
| 165 "//net", | 165 "//net", |
| 166 "//sql", | 166 "//sql", |
| 167 "//storage/common", |
| 167 "//third_party/leveldatabase", | 168 "//third_party/leveldatabase", |
| 168 "//third_party/sqlite", | 169 "//third_party/sqlite", |
| 169 "//url", | 170 "//url", |
| 170 "//webkit/common", | |
| 171 "//webkit/common:storage_common", | |
| 172 ] | 171 ] |
| 173 | 172 |
| 174 # TODO(GYP) support chrome_multiple_dll | 173 # TODO(GYP) support chrome_multiple_dll |
| 175 #['chrome_multiple_dll!=1', { | 174 #['chrome_multiple_dll!=1', { |
| 176 # 'dependencies': [ | 175 # 'dependencies': [ |
| 177 # '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 176 # '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| 178 # ], | 177 # ], |
| 179 #}], | 178 #}], |
| 180 } | 179 } |
| 181 | 180 |
| 182 executable("dump_file_system") { | 181 executable("dump_file_system") { |
| 183 sources = [ | 182 sources = [ |
| 184 "fileapi/dump_file_system.cc", | 183 "fileapi/dump_file_system.cc", |
| 185 ] | 184 ] |
| 186 | 185 |
| 187 deps = [ | 186 deps = [ |
| 188 ":storage", | 187 ":storage", |
| 189 "//base", | 188 "//base", |
| 190 "//webkit/common:storage_common", | 189 "//storage/common", |
| 191 ] | 190 ] |
| 192 } | 191 } |
| OLD | NEW |