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

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

Issue 16010006: Move webkit/chromeos into webkit/browser/chromeos (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',
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': [
19 { 18 {
20 'target_name': 'webkit_storage', 19 'target_name': 'webkit_storage',
(...skipping 22 matching lines...) Expand all
43 # TODO(kinuko): Deprecate them when we have new targets for 42 # TODO(kinuko): Deprecate them when we have new targets for
44 # browser|common|renderer. crbug.com/239710 43 # browser|common|renderer. crbug.com/239710
45 '<@(webkit_browser_storage_sources)', 44 '<@(webkit_browser_storage_sources)',
46 '<@(webkit_common_storage_sources)', 45 '<@(webkit_common_storage_sources)',
47 '../renderer/fileapi/webfilewriter_base.cc', 46 '../renderer/fileapi/webfilewriter_base.cc',
48 '../renderer/fileapi/webfilewriter_base.h', 47 '../renderer/fileapi/webfilewriter_base.h',
49 ], 48 ],
50 'conditions': [ 49 'conditions': [
51 ['chromeos==1', { 50 ['chromeos==1', {
52 'sources': [ 51 'sources': [
53 '<@(webkit_fileapi_chromeos_sources)', 52 '<@(webkit_browser_fileapi_chromeos_sources)',
54 ], 53 ],
55 }], 54 }],
56 ], 55 ],
57 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 56 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
58 'msvs_disabled_warnings': [ 4267, ], 57 'msvs_disabled_warnings': [ 4267, ],
59 }, 58 },
60 ], 59 ],
61 } 60 }
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