| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 # GN version: //webkit/browser:storage | 11 # GN version: //webkit/browser:storage |
| 12 'target_name': 'storage', | 12 'target_name': 'storage', |
| 13 'type': '<(component)', | 13 'type': '<(component)', |
| 14 'variables': { 'enable_wexit_time_destructors': 1, }, | 14 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 '<(DEPTH)/base/base.gyp:base', | 16 '<(DEPTH)/base/base.gyp:base', |
| 17 '<(DEPTH)/base/base.gyp:base_i18n', | 17 '<(DEPTH)/base/base.gyp:base_i18n', |
| 18 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 18 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 19 '<(DEPTH)/net/net.gyp:net', | 19 '<(DEPTH)/net/net.gyp:net', |
| 20 '<(DEPTH)/sql/sql.gyp:sql', | 20 '<(DEPTH)/sql/sql.gyp:sql', |
| 21 '<(DEPTH)/storage/storage_common.gyp:storage_common', |
| 21 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 22 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 22 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', | 23 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', |
| 23 '<(DEPTH)/url/url.gyp:url_lib', | 24 '<(DEPTH)/url/url.gyp:url_lib', |
| 24 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common', | |
| 25 '<(DEPTH)/webkit/storage_common.gyp:storage_common', | |
| 26 ], | 25 ], |
| 27 'defines': ['STORAGE_BROWSER_IMPLEMENTATION'], | 26 'defines': ['STORAGE_BROWSER_IMPLEMENTATION'], |
| 28 'sources': [ | 27 'sources': [ |
| 29 'browser/blob/blob_data_handle.cc', | 28 'browser/blob/blob_data_handle.cc', |
| 30 'browser/blob/blob_data_handle.h', | 29 'browser/blob/blob_data_handle.h', |
| 31 'browser/blob/blob_storage_context.cc', | 30 'browser/blob/blob_storage_context.cc', |
| 32 'browser/blob/blob_storage_context.h', | 31 'browser/blob/blob_storage_context.h', |
| 33 'browser/blob/blob_url_request_job.cc', | 32 'browser/blob/blob_url_request_job.cc', |
| 34 'browser/blob/blob_url_request_job.h', | 33 'browser/blob/blob_url_request_job.h', |
| 35 'browser/blob/blob_url_request_job_factory.cc', | 34 'browser/blob/blob_url_request_job_factory.cc', |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 }, | 184 }, |
| 186 { | 185 { |
| 187 # GN version: //webkit/browser:dump_file_system | 186 # GN version: //webkit/browser:dump_file_system |
| 188 'target_name': 'dump_file_system', | 187 'target_name': 'dump_file_system', |
| 189 'type': 'executable', | 188 'type': 'executable', |
| 190 'sources': [ | 189 'sources': [ |
| 191 'browser/fileapi/dump_file_system.cc', | 190 'browser/fileapi/dump_file_system.cc', |
| 192 ], | 191 ], |
| 193 'dependencies': [ | 192 'dependencies': [ |
| 194 '<(DEPTH)/base/base.gyp:base', | 193 '<(DEPTH)/base/base.gyp:base', |
| 195 '<(DEPTH)/webkit/storage_common.gyp:storage_common', | 194 '<(DEPTH)/storage/storage_common.gyp:storage_common', |
| 196 'storage', | 195 'storage', |
| 197 ], | 196 ], |
| 198 }, | 197 }, |
| 199 ], | 198 ], |
| 200 } | 199 } |
| OLD | NEW |