| 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', | |
| 16 '<(DEPTH)/net/net.gyp:net', | 15 '<(DEPTH)/net/net.gyp:net', |
| 17 '<(DEPTH)/sql/sql.gyp:sql', | 16 '<(DEPTH)/sql/sql.gyp:sql', |
| 18 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 17 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| 19 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 18 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 20 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', | 19 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', |
| 20 '<(DEPTH)/url/url.gyp:url_lib', |
| 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_BROWSER_IMPLEMENTATION'], | 24 'defines': ['WEBKIT_STORAGE_BROWSER_IMPLEMENTATION'], |
| 25 'sources': [ | 25 'sources': [ |
| 26 'browser/webkit_storage_browser_export.h', | 26 'browser/webkit_storage_browser_export.h', |
| 27 'browser/appcache/appcache.cc', | 27 'browser/appcache/appcache.cc', |
| 28 'browser/appcache/appcache.h', | 28 'browser/appcache/appcache.h', |
| 29 'browser/appcache/appcache_backend_impl.cc', | 29 'browser/appcache/appcache_backend_impl.cc', |
| 30 'browser/appcache/appcache_backend_impl.h', | 30 'browser/appcache/appcache_backend_impl.h', |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 'browser/fileapi/dump_file_system.cc', | 267 'browser/fileapi/dump_file_system.cc', |
| 268 ], | 268 ], |
| 269 'dependencies': [ | 269 'dependencies': [ |
| 270 '<(DEPTH)/base/base.gyp:base', | 270 '<(DEPTH)/base/base.gyp:base', |
| 271 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', | 271 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', |
| 272 'webkit_storage_browser', | 272 'webkit_storage_browser', |
| 273 ], | 273 ], |
| 274 }, | 274 }, |
| 275 ], | 275 ], |
| 276 } | 276 } |
| OLD | NEW |