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

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

Issue 15746017: Move webkit/blob to new locations. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: 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',
9 '../dom_storage/webkit_dom_storage.gypi', 8 '../dom_storage/webkit_dom_storage.gypi',
10 '../fileapi/webkit_fileapi.gypi', 9 '../fileapi/webkit_fileapi.gypi',
11 '../quota/webkit_quota.gypi', 10 '../quota/webkit_quota.gypi',
12 11
13 # TODO(kinuko): Deprecate this when we have a new target for 12 # TODO(kinuko): Deprecate this when we have a new target for
14 # webkit_browser. crbug.com/239710 13 # webkit_browser. crbug.com/239710
15 '../browser/webkit_browser.gypi', 14 '../browser/webkit_browser.gypi',
16 '../common/webkit_common.gypi', 15 '../common/webkit_common.gypi',
17 ], 16 ],
18 'targets': [ 17 'targets': [
(...skipping 10 matching lines...) Expand all
29 '<(DEPTH)/sql/sql.gyp:sql', 28 '<(DEPTH)/sql/sql.gyp:sql',
30 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 29 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
31 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 30 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
32 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 31 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
33 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base', 32 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base',
34 ], 33 ],
35 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'], 34 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'],
36 'sources': [ 35 'sources': [
37 '../storage/webkit_storage_export.h', 36 '../storage/webkit_storage_export.h',
38 '<@(webkit_appcache_sources)', 37 '<@(webkit_appcache_sources)',
39 '<@(webkit_blob_sources)',
40 '<@(webkit_dom_storage_sources)', 38 '<@(webkit_dom_storage_sources)',
41 '<@(webkit_fileapi_sources)', 39 '<@(webkit_fileapi_sources)',
42 '<@(webkit_quota_sources)', 40 '<@(webkit_quota_sources)',
43 # TODO(kinuko): Deprecate this when we have a new target for 41 # TODO(kinuko): Deprecate this when we have a new target for
44 # webkit_browser. crbug.com/239710 42 # webkit_browser. crbug.com/239710
45 '<@(webkit_browser_storage_sources)', 43 '<@(webkit_browser_storage_sources)',
46 '<@(webkit_common_storage_sources)', 44 '<@(webkit_common_storage_sources)',
47 ], 45 ],
48 'conditions': [ 46 'conditions': [
49 ['chromeos==1', { 47 ['chromeos==1', {
50 'sources': [ 48 'sources': [
51 '<@(webkit_fileapi_chromeos_sources)', 49 '<@(webkit_fileapi_chromeos_sources)',
52 ], 50 ],
53 }], 51 }],
54 ], 52 ],
55 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 53 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
56 'msvs_disabled_warnings': [ 4267, ], 54 'msvs_disabled_warnings': [ 4267, ],
57 }, 55 },
58 ], 56 ],
59 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698