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

Side by Side Diff: webkit/storage/webkit_storage.gypi

Issue 15658004: Split FileAPI code for common|common_child|renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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': [ 6 'includes': [
7 '../appcache/webkit_appcache.gypi', 7 '../appcache/webkit_appcache.gypi',
8 '../blob/webkit_blob.gypi', 8 '../blob/webkit_blob.gypi',
9 '../dom_storage/webkit_dom_storage.gypi', 9 '../dom_storage/webkit_dom_storage.gypi',
10 '../fileapi/webkit_fileapi.gypi', 10 '../fileapi/webkit_fileapi.gypi',
(...skipping 22 matching lines...) Expand all
33 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base', 33 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base',
34 ], 34 ],
35 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'], 35 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'],
36 'sources': [ 36 'sources': [
37 '../storage/webkit_storage_export.h', 37 '../storage/webkit_storage_export.h',
38 '<@(webkit_appcache_sources)', 38 '<@(webkit_appcache_sources)',
39 '<@(webkit_blob_sources)', 39 '<@(webkit_blob_sources)',
40 '<@(webkit_dom_storage_sources)', 40 '<@(webkit_dom_storage_sources)',
41 '<@(webkit_fileapi_sources)', 41 '<@(webkit_fileapi_sources)',
42 '<@(webkit_quota_sources)', 42 '<@(webkit_quota_sources)',
43 # TODO(kinuko): Deprecate this when we have a new target for 43
44 # webkit_browser. crbug.com/239710 44 # TODO(kinuko): Deprecate them when we have new targets for
45 # browser|common|renderer. crbug.com/239710
45 '<@(webkit_browser_storage_sources)', 46 '<@(webkit_browser_storage_sources)',
46 '<@(webkit_common_storage_sources)', 47 '<@(webkit_common_storage_sources)',
48 '../renderer/fileapi/webfilewriter_base.cc',
49 '../renderer/fileapi/webfilewriter_base.h',
47 ], 50 ],
48 'conditions': [ 51 'conditions': [
49 ['chromeos==1', { 52 ['chromeos==1', {
50 'sources': [ 53 'sources': [
51 '<@(webkit_fileapi_chromeos_sources)', 54 '<@(webkit_fileapi_chromeos_sources)',
52 ], 55 ],
53 }], 56 }],
54 ], 57 ],
55 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 58 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
56 'msvs_disabled_warnings': [ 4267, ], 59 'msvs_disabled_warnings': [ 4267, ],
57 }, 60 },
58 ], 61 ],
59 } 62 }
OLDNEW
« no previous file with comments | « webkit/renderer/fileapi/webfilewriter_base_unittest.cc ('k') | webkit/tools/test_shell/simple_file_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698