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

Side by Side Diff: webkit/common/webkit_common.gypi

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
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 'includes': [
7 '../common/blob/webkit_common_blob.gypi',
8 '../common/database/webkit_common_database.gypi',
9 '../common/dom_storage/webkit_common_dom_storage.gypi',
10 '../common/fileapi/webkit_common_fileapi.gypi',
11 '../common/quota/webkit_common_quota.gypi',
12 ],
13 # TODO(michaeln): Have webkit_browser target and deprecate old gypis like
14 # webkit_storage.gypi.
15 'variables': {
16 'webkit_common_storage_sources': [
17 '<@(webkit_common_blob_sources)',
18 '<@(webkit_common_database_sources)',
19 '<@(webkit_common_dom_storage_sources)',
20 '<@(webkit_common_fileapi_sources)',
21 '<@(webkit_common_quota_sources)',
22 '../common/appcache/appcache_interfaces.cc',
23 '../common/appcache/appcache_interfaces.h',
24 ],
25 },
26
27 'targets': [ 6 'targets': [
28 { 7 {
29 'target_name': 'webkit_common', 8 'target_name': 'webkit_common',
30 'type': '<(component)', 9 'type': '<(component)',
31 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
32 'defines': [ 11 'defines': [
33 'WEBKIT_COMMON_IMPLEMENTATION', 12 'WEBKIT_COMMON_IMPLEMENTATION',
34 ], 13 ],
35 'dependencies': [ 14 'dependencies': [
36 '<(DEPTH)/base/base.gyp:base_i18n', 15 '<(DEPTH)/base/base.gyp:base_i18n',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 'sources/': [['exclude', '_win\\.cc$']], 79 'sources/': [['exclude', '_win\\.cc$']],
101 }, { # else: OS=="win" 80 }, { # else: OS=="win"
102 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 81 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
103 'msvs_disabled_warnings': [ 4800, 4267 ], 82 'msvs_disabled_warnings': [ 4800, 4267 ],
104 'sources/': [['exclude', '_posix\\.cc$']], 83 'sources/': [['exclude', '_posix\\.cc$']],
105 }], 84 }],
106 ], 85 ],
107 }, 86 },
108 ], 87 ],
109 } 88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698