OLD | NEW |
---|---|
(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 } | |
OLD | NEW |