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

Side by Side Diff: webkit/renderer/webkit_renderer_storage.gypi

Issue 15658004: Split FileAPI code for common|common_child|renderer (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
(Empty)
1 # Copyright 2013 The Chromium Authors. All rights reserved.
jamesr 2013/05/24 20:46:25 can you make this a real .gyp instead of a gypi?
kinuko 2013/05/27 08:08:48 Will do when I add this (I dropped this file from
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'webkit_renderer_storage',
9 'type': '<(component)',
10 'variables': { 'enable_wexit_time_destructors': 1, },
11 'dependencies': [
12 '<(DEPTH)/base/base.gyp:base',
13 '<(DEPTH)/base/base.gyp:base_i18n',
14 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
15 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
16 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
17 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base',
18 ],
19 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'],
20 'sources': [
21 'fileapi/webfilewriter_base.cc',
22 'fileapi/webfilewriter_base.h',
23 ],
24 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
25 'msvs_disabled_warnings': [ 4267, ],
26 },
27 ],
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698