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