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

Side by Side Diff: webkit/storage_common.gyp

Issue 16091011: 2nd try: Split webkit_storage target into webkit_storage_{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: splint_link fix Created 7 years, 6 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'webkit_storage_common',
9 'type': '<(component)',
10 'variables': { 'enable_wexit_time_destructors': 1, },
11 'dependencies': [
12 '<(DEPTH)/base/base.gyp:base',
13 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
14 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
15 '<(DEPTH)/net/net.gyp:net',
16 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
17 '<(DEPTH)/webkit/base/webkit_base.gyp:webkit_base',
18 ],
19 'defines': ['WEBKIT_COMMON_IMPLEMENTATION'],
20 'sources': [
21 'common/webkit_common_export.h',
22 'common/appcache/appcache_interfaces.cc',
23 'common/appcache/appcache_interfaces.h',
24 'common/blob/blob_data.cc',
25 'common/blob/blob_data.h',
26 'common/blob/scoped_file.cc',
27 'common/blob/scoped_file.h',
28 'common/blob/shareable_file_reference.cc',
29 'common/blob/shareable_file_reference.h',
30 'common/database/database_connections.cc',
31 'common/database/database_connections.h',
32 'common/dom_storage/dom_storage_map.cc',
33 'common/dom_storage/dom_storage_map.h',
34 'common/dom_storage/dom_storage_types.cc',
35 'common/dom_storage/dom_storage_types.h',
36 'common/fileapi/directory_entry.h',
37 'common/fileapi/file_system_types.h',
38 'common/fileapi/file_system_util.cc',
39 'common/fileapi/file_system_util.h',
40 'common/quota/quota_status_code.cc',
41 'common/quota/quota_status_code.h',
42 'common/quota/quota_types.h',
43 ],
44 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
45 'msvs_disabled_warnings': [ 4267, ],
46 },
47 ],
48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698