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_browser', | 8 'target_name': 'webkit_storage_browser', |
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/base.gyp:base_i18n', | 13 '<(DEPTH)/base/base.gyp:base_i18n', |
14 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 14 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
15 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | 15 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', |
16 '<(DEPTH)/net/net.gyp:net', | 16 '<(DEPTH)/net/net.gyp:net', |
17 '<(DEPTH)/sql/sql.gyp:sql', | 17 '<(DEPTH)/sql/sql.gyp:sql', |
18 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 18 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
19 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 19 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
20 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', | 20 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', |
21 '<(DEPTH)/webkit/base/webkit_base.gyp:webkit_base', | 21 '<(DEPTH)/webkit/base/webkit_base.gyp:webkit_base', |
22 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', | 22 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', |
23 ], | 23 ], |
24 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'], | 24 'defines': ['WEBKIT_STORAGE_BROWSER_IMPLEMENTATION'], |
25 'sources': [ | 25 'sources': [ |
26 # TODO(kinuko): Fix this export. | 26 'browser/webkit_storage_browser_export.h', |
27 'storage/webkit_storage_export.h', | |
28 'browser/appcache/appcache.cc', | 27 'browser/appcache/appcache.cc', |
29 'browser/appcache/appcache.h', | 28 'browser/appcache/appcache.h', |
30 'browser/appcache/appcache_backend_impl.cc', | 29 'browser/appcache/appcache_backend_impl.cc', |
31 'browser/appcache/appcache_backend_impl.h', | 30 'browser/appcache/appcache_backend_impl.h', |
32 'browser/appcache/appcache_database.cc', | 31 'browser/appcache/appcache_database.cc', |
33 'browser/appcache/appcache_database.h', | 32 'browser/appcache/appcache_database.h', |
34 'browser/appcache/appcache_disk_cache.cc', | 33 'browser/appcache/appcache_disk_cache.cc', |
35 'browser/appcache/appcache_disk_cache.h', | 34 'browser/appcache/appcache_disk_cache.h', |
36 'browser/appcache/appcache_entry.h', | 35 'browser/appcache/appcache_entry.h', |
37 'browser/appcache/appcache_group.cc', | 36 'browser/appcache/appcache_group.cc', |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 'browser/chromeos/fileapi/remote_file_stream_writer.cc', | 254 'browser/chromeos/fileapi/remote_file_stream_writer.cc', |
256 'browser/chromeos/fileapi/remote_file_stream_writer.h', | 255 'browser/chromeos/fileapi/remote_file_stream_writer.h', |
257 ], | 256 ], |
258 }], | 257 }], |
259 ], | 258 ], |
260 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 259 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
261 'msvs_disabled_warnings': [ 4267, ], | 260 'msvs_disabled_warnings': [ 4267, ], |
262 }, | 261 }, |
263 ], | 262 ], |
264 } | 263 } |
OLD | NEW |