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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: webkit/renderer/webkit_renderer_storage.gypi
diff --git a/webkit/renderer/webkit_renderer_storage.gypi b/webkit/renderer/webkit_renderer_storage.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..e341f6eb04f88f374fecaf2b114091868cc03eac
--- /dev/null
+++ b/webkit/renderer/webkit_renderer_storage.gypi
@@ -0,0 +1,28 @@
+# 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
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'webkit_renderer_storage',
+ 'type': '<(component)',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/base/base.gyp:base_i18n',
+ '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
+ '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
+ '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
+ '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base',
+ ],
+ 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'],
+ 'sources': [
+ 'fileapi/webfilewriter_base.cc',
+ 'fileapi/webfilewriter_base.h',
+ ],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [ 4267, ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698