Home | History | Annotate | Download | only in webkit
      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
      3 # found in the LICENSE file.
      4 
      5 {
      6   'targets': [
      7     {
      8       'target_name': 'webkit_storage_renderer',
      9       'type': '<(component)',
     10       'variables': { 'enable_wexit_time_destructors': 1, },
     11       'dependencies': [
     12         '<(DEPTH)/base/base.gyp:base',
     13         '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
     14         '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
     15         '<(DEPTH)/url/url.gyp:url_lib',
     16         '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common',
     17         '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common',
     18       ],
     19       'defines': ['WEBKIT_STORAGE_RENDERER_IMPLEMENTATION'],
     20       'sources': [
     21         'renderer/webkit_storage_renderer_export.h',
     22         'renderer/fileapi/webfilewriter_base.cc',
     23         'renderer/fileapi/webfilewriter_base.h',
     24       ],
     25       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
     26       'msvs_disabled_warnings': [ 4267, ],
     27     },
     28   ],
     29 }
     30