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 config("storage_config") { | |
6 if (is_android) { | |
7 defines = [ "APPCACHE_USE_SIMPLE_CACHE" ] | |
8 } | |
9 } | |
10 | |
11 component("storage") { | 5 component("storage") { |
12 output_name = "webkit_storage_browser" | 6 output_name = "webkit_storage_browser" |
13 sources = [ | 7 sources = [ |
14 "webkit_storage_browser_export.h", | 8 "webkit_storage_browser_export.h", |
15 "appcache/appcache.cc", | |
16 "appcache/appcache.h", | |
17 "appcache/appcache_backend_impl.cc", | |
18 "appcache/appcache_backend_impl.h", | |
19 "appcache/appcache_database.cc", | |
20 "appcache/appcache_database.h", | |
21 "appcache/appcache_disk_cache.cc", | |
22 "appcache/appcache_disk_cache.h", | |
23 "appcache/appcache_entry.h", | |
24 "appcache/appcache_executable_handler.h", | |
25 "appcache/appcache_group.cc", | |
26 "appcache/appcache_group.h", | |
27 "appcache/appcache_histograms.cc", | |
28 "appcache/appcache_histograms.h", | |
29 "appcache/appcache_host.cc", | |
30 "appcache/appcache_host.h", | |
31 "appcache/appcache_policy.h", | |
32 "appcache/appcache_quota_client.cc", | |
33 "appcache/appcache_quota_client.h", | |
34 "appcache/appcache_request_handler.cc", | |
35 "appcache/appcache_request_handler.h", | |
36 "appcache/appcache_response.cc", | |
37 "appcache/appcache_response.h", | |
38 "appcache/appcache_service_impl.cc", | |
39 "appcache/appcache_service_impl.h", | |
40 "appcache/appcache_service.h", | |
41 "appcache/appcache_storage.cc", | |
42 "appcache/appcache_storage.h", | |
43 "appcache/appcache_storage_impl.cc", | |
44 "appcache/appcache_storage_impl.h", | |
45 "appcache/appcache_working_set.cc", | |
46 "appcache/appcache_working_set.h", | |
47 "appcache/appcache_update_job.cc", | |
48 "appcache/appcache_update_job.h", | |
49 "appcache/appcache_url_request_job.cc", | |
50 "appcache/appcache_url_request_job.h", | |
51 "appcache/manifest_parser.cc", | |
52 "appcache/manifest_parser.h", | |
53 "blob/blob_data_handle.cc", | 9 "blob/blob_data_handle.cc", |
54 "blob/blob_data_handle.h", | 10 "blob/blob_data_handle.h", |
55 "blob/blob_storage_context.cc", | 11 "blob/blob_storage_context.cc", |
56 "blob/blob_storage_context.h", | 12 "blob/blob_storage_context.h", |
57 "blob/blob_url_request_job.cc", | 13 "blob/blob_url_request_job.cc", |
58 "blob/blob_url_request_job.h", | 14 "blob/blob_url_request_job.h", |
59 "blob/blob_url_request_job_factory.cc", | 15 "blob/blob_url_request_job_factory.cc", |
60 "blob/blob_url_request_job_factory.h", | 16 "blob/blob_url_request_job_factory.h", |
61 "blob/file_stream_reader.cc", | 17 "blob/file_stream_reader.cc", |
62 "blob/file_stream_reader.h", | 18 "blob/file_stream_reader.h", |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 sources = [ | 184 sources = [ |
229 "fileapi/dump_file_system.cc", | 185 "fileapi/dump_file_system.cc", |
230 ] | 186 ] |
231 | 187 |
232 deps = [ | 188 deps = [ |
233 ":storage", | 189 ":storage", |
234 "//base", | 190 "//base", |
235 "//webkit/common:storage", | 191 "//webkit/common:storage", |
236 ] | 192 ] |
237 } | 193 } |
OLD | NEW |