Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: storage/storage.gyp

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « storage/common/storage_export.h ('k') | webkit/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 # GN version: //webkit/common:common",
12 'target_name': 'webkit_common',
13 'type': '<(component)',
14 'variables': { 'enable_wexit_time_destructors': 1, },
15 'defines': [
16 'STORAGE_IMPLEMENTATION',
17 ],
18 'dependencies': [
19 '../base/base.gyp:base',
20 '../url/url.gyp:url_lib',
21 ],
22 'sources': [
23 'common/data_element.cc',
24 'common/data_element.h',
25 'common/storage_export.h',
26 ],
27 },
28 {
29 # GN version: //webkit/common:storage
30 'target_name': 'webkit_storage_common',
31 'type': '<(component)',
32 'variables': { 'enable_wexit_time_destructors': 1, },
33 'dependencies': [
34 '<(DEPTH)/base/base.gyp:base',
35 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
36 '<(DEPTH)/net/net.gyp:net',
37 '<(DEPTH)/url/url.gyp:url_lib',
38 '<(DEPTH)/storage/storage.gyp:webkit_common',
39 ],
40 'defines': ['STORAGE_IMPLEMENTATION'],
41 'sources': [
42 'common/webkit_storage_common_export.h',
43 'common/blob/blob_data.cc',
44 'common/blob/blob_data.h',
45 'common/blob/scoped_file.cc',
46 'common/blob/scoped_file.h',
47 'common/blob/shareable_file_reference.cc',
48 'common/blob/shareable_file_reference.h',
49 'common/database/database_connections.cc',
50 'common/database/database_connections.h',
51 'common/database/database_identifier.cc',
52 'common/database/database_identifier.h',
53 'common/fileapi/directory_entry.cc',
54 'common/fileapi/directory_entry.h',
55 'common/fileapi/file_system_info.cc',
56 'common/fileapi/file_system_info.h',
57 'common/fileapi/file_system_mount_option.h',
58 'common/fileapi/file_system_types.h',
59 'common/fileapi/file_system_util.cc',
60 'common/fileapi/file_system_util.h',
61 'common/quota/quota_status_code.cc',
62 'common/quota/quota_status_code.h',
63 'common/quota/quota_types.h',
64 ],
65 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
66 'msvs_disabled_warnings': [ 4267, ],
67 },
68 {
11 # GN version: //webkit/browser:storage 69 # GN version: //webkit/browser:storage
12 'target_name': 'webkit_storage_browser', 70 'target_name': 'webkit_storage_browser',
13 'type': '<(component)', 71 'type': '<(component)',
14 'variables': { 'enable_wexit_time_destructors': 1, }, 72 'variables': { 'enable_wexit_time_destructors': 1, },
15 'dependencies': [ 73 'dependencies': [
16 '<(DEPTH)/base/base.gyp:base', 74 '<(DEPTH)/base/base.gyp:base',
17 '<(DEPTH)/base/base.gyp:base_i18n', 75 '<(DEPTH)/base/base.gyp:base_i18n',
18 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 76 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
19 '<(DEPTH)/net/net.gyp:net', 77 '<(DEPTH)/net/net.gyp:net',
20 '<(DEPTH)/sql/sql.gyp:sql', 78 '<(DEPTH)/sql/sql.gyp:sql',
21 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 79 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
22 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 80 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
23 '<(DEPTH)/url/url.gyp:url_lib', 81 '<(DEPTH)/url/url.gyp:url_lib',
24 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common', 82 '<(DEPTH)/storage/storage.gyp:webkit_common',
25 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', 83 '<(DEPTH)/storage/storage.gyp:webkit_storage_common',
26 ], 84 ],
27 'defines': ['WEBKIT_STORAGE_BROWSER_IMPLEMENTATION'], 85 'defines': ['STORAGE_IMPLEMENTATION'],
28 'sources': [ 86 'sources': [
29 'browser/webkit_storage_browser_export.h',
30 'browser/blob/blob_data_handle.cc', 87 'browser/blob/blob_data_handle.cc',
31 'browser/blob/blob_data_handle.h', 88 'browser/blob/blob_data_handle.h',
32 'browser/blob/blob_storage_context.cc', 89 'browser/blob/blob_storage_context.cc',
33 'browser/blob/blob_storage_context.h', 90 'browser/blob/blob_storage_context.h',
34 'browser/blob/blob_url_request_job.cc', 91 'browser/blob/blob_url_request_job.cc',
35 'browser/blob/blob_url_request_job.h', 92 'browser/blob/blob_url_request_job.h',
36 'browser/blob/blob_url_request_job_factory.cc', 93 'browser/blob/blob_url_request_job_factory.cc',
37 'browser/blob/blob_url_request_job_factory.h', 94 'browser/blob/blob_url_request_job_factory.h',
38 'browser/blob/file_stream_reader.cc', 95 'browser/blob/file_stream_reader.cc',
39 'browser/blob/file_stream_reader.h', 96 'browser/blob/file_stream_reader.h',
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 }, 242 },
186 { 243 {
187 # GN version: //webkit/browser:dump_file_system 244 # GN version: //webkit/browser:dump_file_system
188 'target_name': 'dump_file_system', 245 'target_name': 'dump_file_system',
189 'type': 'executable', 246 'type': 'executable',
190 'sources': [ 247 'sources': [
191 'browser/fileapi/dump_file_system.cc', 248 'browser/fileapi/dump_file_system.cc',
192 ], 249 ],
193 'dependencies': [ 250 'dependencies': [
194 '<(DEPTH)/base/base.gyp:base', 251 '<(DEPTH)/base/base.gyp:base',
195 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', 252 '<(DEPTH)/storage/storage.gyp:webkit_storage_common',
196 'webkit_storage_browser', 253 'webkit_storage_browser',
197 ], 254 ],
198 }, 255 },
199 ], 256 ],
200 } 257 }
OLDNEW
« no previous file with comments | « storage/common/storage_export.h ('k') | webkit/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698