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

Side by Side Diff: webkit/storage_browser.gyp

Issue 19784010: cut a bunch of dependencies from browser->blink when in chrome_multiple_dll (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 5 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/glue/webkit_glue.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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'webkit_storage_browser', 8 'target_name': 'webkit_storage_browser',
9 'type': '<(component)', 9 'type': '<(component)',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
11 'dependencies': [ 11 'dependencies': [
12 '<(DEPTH)/base/base.gyp:base', 12 '<(DEPTH)/base/base.gyp:base',
13 '<(DEPTH)/base/base.gyp:base_i18n', 13 '<(DEPTH)/base/base.gyp:base_i18n',
14 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 14 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
15 '<(DEPTH)/net/net.gyp:net', 15 '<(DEPTH)/net/net.gyp:net',
16 '<(DEPTH)/sql/sql.gyp:sql', 16 '<(DEPTH)/sql/sql.gyp:sql',
17 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
18 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 17 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
19 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 18 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
20 '<(DEPTH)/url/url.gyp:url_lib', 19 '<(DEPTH)/url/url.gyp:url_lib',
21 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common', 20 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common',
22 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', 21 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common',
23 ], 22 ],
24 'defines': ['WEBKIT_STORAGE_BROWSER_IMPLEMENTATION'], 23 'defines': ['WEBKIT_STORAGE_BROWSER_IMPLEMENTATION'],
25 'sources': [ 24 'sources': [
26 'browser/webkit_storage_browser_export.h', 25 'browser/webkit_storage_browser_export.h',
27 'browser/appcache/appcache.cc', 26 'browser/appcache/appcache.cc',
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 'browser/quota/quota_task.h', 235 'browser/quota/quota_task.h',
237 'browser/quota/quota_temporary_storage_evictor.cc', 236 'browser/quota/quota_temporary_storage_evictor.cc',
238 'browser/quota/quota_temporary_storage_evictor.h', 237 'browser/quota/quota_temporary_storage_evictor.h',
239 'browser/quota/special_storage_policy.cc', 238 'browser/quota/special_storage_policy.cc',
240 'browser/quota/special_storage_policy.h', 239 'browser/quota/special_storage_policy.h',
241 'browser/quota/usage_tracker.cc', 240 'browser/quota/usage_tracker.cc',
242 'browser/quota/usage_tracker.h', 241 'browser/quota/usage_tracker.h',
243 ], 242 ],
244 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 243 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
245 'msvs_disabled_warnings': [ 4267, ], 244 'msvs_disabled_warnings': [ 4267, ],
245
246 'conditions': [
247 ['chrome_multiple_dll!=1', {
248 'dependencies': [
249 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
250 ],
251 }],
252 ],
246 }, 253 },
247 { 254 {
248 'target_name': 'dump_file_system', 255 'target_name': 'dump_file_system',
249 'type': 'executable', 256 'type': 'executable',
250 'sources': [ 257 'sources': [
251 'browser/fileapi/dump_file_system.cc', 258 'browser/fileapi/dump_file_system.cc',
252 ], 259 ],
253 'dependencies': [ 260 'dependencies': [
254 '<(DEPTH)/base/base.gyp:base', 261 '<(DEPTH)/base/base.gyp:base',
255 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', 262 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common',
256 'webkit_storage_browser', 263 'webkit_storage_browser',
257 ], 264 ],
258 }, 265 },
259 ], 266 ],
260 } 267 }
OLDNEW
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698