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_export.h", | 8 "../common/storage_export.h", |
jamesr
2014/08/29 20:46:10
this should be using its own export header
| |
9 "blob/blob_data_handle.cc", | 9 "blob/blob_data_handle.cc", |
10 "blob/blob_data_handle.h", | 10 "blob/blob_data_handle.h", |
11 "blob/blob_storage_context.cc", | 11 "blob/blob_storage_context.cc", |
12 "blob/blob_storage_context.h", | 12 "blob/blob_storage_context.h", |
13 "blob/blob_url_request_job.cc", | 13 "blob/blob_url_request_job.cc", |
14 "blob/blob_url_request_job.h", | 14 "blob/blob_url_request_job.h", |
15 "blob/blob_url_request_job_factory.cc", | 15 "blob/blob_url_request_job_factory.cc", |
16 "blob/blob_url_request_job_factory.h", | 16 "blob/blob_url_request_job_factory.h", |
17 "blob/file_stream_reader.cc", | 17 "blob/file_stream_reader.cc", |
18 "blob/file_stream_reader.h", | 18 "blob/file_stream_reader.h", |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
145 "quota/special_storage_policy.cc", | 145 "quota/special_storage_policy.cc", |
146 "quota/special_storage_policy.h", | 146 "quota/special_storage_policy.h", |
147 "quota/storage_monitor.cc", | 147 "quota/storage_monitor.cc", |
148 "quota/storage_monitor.h", | 148 "quota/storage_monitor.h", |
149 "quota/storage_observer.cc", | 149 "quota/storage_observer.cc", |
150 "quota/storage_observer.h", | 150 "quota/storage_observer.h", |
151 "quota/usage_tracker.cc", | 151 "quota/usage_tracker.cc", |
152 "quota/usage_tracker.h", | 152 "quota/usage_tracker.h", |
153 ] | 153 ] |
154 | 154 |
155 defines = [ "WEBKIT_STORAGE_BROWSER_IMPLEMENTATION" ] | 155 defines = [ "STORAGE_IMPLEMENTATION" ] |
jamesr
2014/08/29 20:46:10
this should be something like STORAGE_BROWSER_IMPL
| |
156 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 156 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
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 "//third_party/leveldatabase", | 167 "//third_party/leveldatabase", |
168 "//third_party/sqlite", | 168 "//third_party/sqlite", |
169 "//url", | 169 "//url", |
170 "//webkit/common", | 170 "//webkit/common", |
171 "//webkit/common:storage", | 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", | 190 "//webkit/common:storage_common", |
191 ] | 191 ] |
192 } | 192 } |
OLD | NEW |