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

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

Issue 15806012: Move webkit/fileapi/syncable/* code to webkit/browser/fileapi (final!) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « webkit/fileapi/webkit_fileapi.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 20 matching lines...) Expand all
31 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 31 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
32 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 32 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
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)',
42 '<@(webkit_quota_sources)', 41 '<@(webkit_quota_sources)',
43 42
44 # TODO(kinuko): Deprecate them when we have new targets for 43 # TODO(kinuko): Deprecate them when we have new targets for
45 # browser|common|renderer. crbug.com/239710 44 # browser|common|renderer. crbug.com/239710
46 '<@(webkit_browser_storage_sources)', 45 '<@(webkit_browser_storage_sources)',
47 '<@(webkit_common_storage_sources)', 46 '<@(webkit_common_storage_sources)',
48 '../renderer/fileapi/webfilewriter_base.cc', 47 '../renderer/fileapi/webfilewriter_base.cc',
49 '../renderer/fileapi/webfilewriter_base.h', 48 '../renderer/fileapi/webfilewriter_base.h',
50 ], 49 ],
51 'conditions': [ 50 'conditions': [
52 ['chromeos==1', { 51 ['chromeos==1', {
53 'sources': [ 52 'sources': [
54 '<@(webkit_fileapi_chromeos_sources)', 53 '<@(webkit_fileapi_chromeos_sources)',
55 ], 54 ],
56 }], 55 }],
57 ], 56 ],
58 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 57 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
59 'msvs_disabled_warnings': [ 4267, ], 58 'msvs_disabled_warnings': [ 4267, ],
60 }, 59 },
61 ], 60 ],
62 } 61 }
OLDNEW
« no previous file with comments | « webkit/fileapi/webkit_fileapi.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698