OLD | NEW |
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_common', | 8 'target_name': 'webkit_storage_common', |
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/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 13 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
14 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | |
15 '<(DEPTH)/net/net.gyp:net', | 14 '<(DEPTH)/net/net.gyp:net', |
16 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 15 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| 16 '<(DEPTH)/url/url.gyp:url_lib', |
17 '<(DEPTH)/webkit/base/webkit_base.gyp:webkit_base', | 17 '<(DEPTH)/webkit/base/webkit_base.gyp:webkit_base', |
18 ], | 18 ], |
19 'defines': ['WEBKIT_STORAGE_COMMON_IMPLEMENTATION'], | 19 'defines': ['WEBKIT_STORAGE_COMMON_IMPLEMENTATION'], |
20 'sources': [ | 20 'sources': [ |
21 'common/webkit_storage_common_export.h', | 21 'common/webkit_storage_common_export.h', |
22 'common/appcache/appcache_interfaces.cc', | 22 'common/appcache/appcache_interfaces.cc', |
23 'common/appcache/appcache_interfaces.h', | 23 'common/appcache/appcache_interfaces.h', |
24 'common/blob/blob_data.cc', | 24 'common/blob/blob_data.cc', |
25 'common/blob/blob_data.h', | 25 'common/blob/blob_data.h', |
26 'common/blob/scoped_file.cc', | 26 'common/blob/scoped_file.cc', |
(...skipping 15 matching lines...) Expand all Loading... |
42 'common/fileapi/file_system_util.h', | 42 'common/fileapi/file_system_util.h', |
43 'common/quota/quota_status_code.cc', | 43 'common/quota/quota_status_code.cc', |
44 'common/quota/quota_status_code.h', | 44 'common/quota/quota_status_code.h', |
45 'common/quota/quota_types.h', | 45 'common/quota/quota_types.h', |
46 ], | 46 ], |
47 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 47 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
48 'msvs_disabled_warnings': [ 4267, ], | 48 'msvs_disabled_warnings': [ 4267, ], |
49 }, | 49 }, |
50 ], | 50 ], |
51 } | 51 } |
OLD | NEW |