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

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

Issue 15421002: Roll DEPS for googleurl. Second try. (Closed) Base URL: svn://svn.chromium.org/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', 8 '../blob/webkit_blob.gypi',
9 '../database/webkit_database.gypi', 9 '../database/webkit_database.gypi',
10 '../dom_storage/webkit_dom_storage.gypi', 10 '../dom_storage/webkit_dom_storage.gypi',
11 '../fileapi/webkit_fileapi.gypi', 11 '../fileapi/webkit_fileapi.gypi',
12 '../quota/webkit_quota.gypi', 12 '../quota/webkit_quota.gypi',
13 ], 13 ],
14 'targets': [ 14 'targets': [
15 { 15 {
16 'target_name': 'webkit_storage', 16 'target_name': 'webkit_storage',
17 'type': '<(component)', 17 'type': '<(component)',
18 'variables': { 'enable_wexit_time_destructors': 1, }, 18 'variables': { 'enable_wexit_time_destructors': 1, },
19 'dependencies': [ 19 'dependencies': [
20 '<(DEPTH)/base/base.gyp:base', 20 '<(DEPTH)/base/base.gyp:base',
21 '<(DEPTH)/base/base.gyp:base_i18n', 21 '<(DEPTH)/base/base.gyp:base_i18n',
22 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 22 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
23 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
24 '<(DEPTH)/net/net.gyp:net', 23 '<(DEPTH)/net/net.gyp:net',
25 '<(DEPTH)/sql/sql.gyp:sql', 24 '<(DEPTH)/sql/sql.gyp:sql',
26 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 25 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
27 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 26 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
28 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 27 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
28 '<(DEPTH)/url/url.gyp:url',
29 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base', 29 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base',
30 ], 30 ],
31 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'], 31 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'],
32 'sources': [ 32 'sources': [
33 '../storage/webkit_storage_export.h', 33 '../storage/webkit_storage_export.h',
34 '<@(webkit_appcache_sources)', 34 '<@(webkit_appcache_sources)',
35 '<@(webkit_blob_sources)', 35 '<@(webkit_blob_sources)',
36 '<@(webkit_database_sources)', 36 '<@(webkit_database_sources)',
37 '<@(webkit_dom_storage_sources)', 37 '<@(webkit_dom_storage_sources)',
38 '<@(webkit_fileapi_sources)', 38 '<@(webkit_fileapi_sources)',
39 '<@(webkit_quota_sources)', 39 '<@(webkit_quota_sources)',
40 ], 40 ],
41 'conditions': [ 41 'conditions': [
42 ['chromeos==1', { 42 ['chromeos==1', {
43 'sources': [ 43 'sources': [
44 '<@(webkit_fileapi_chromeos_sources)', 44 '<@(webkit_fileapi_chromeos_sources)',
45 ], 45 ],
46 }], 46 }],
47 ], 47 ],
48 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 48 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
49 'msvs_disabled_warnings': [ 4267, ], 49 'msvs_disabled_warnings': [ 4267, ],
50 }, 50 },
51 ], 51 ],
52 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698