| 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 'target_name': 'webkit_storage_browser', | 12 'target_name': 'webkit_storage_browser', |
| 12 'type': '<(component)', | 13 'type': '<(component)', |
| 13 'variables': { 'enable_wexit_time_destructors': 1, }, | 14 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 14 'dependencies': [ | 15 'dependencies': [ |
| 15 '<(DEPTH)/base/base.gyp:base', | 16 '<(DEPTH)/base/base.gyp:base', |
| 16 '<(DEPTH)/base/base.gyp:base_i18n', | 17 '<(DEPTH)/base/base.gyp:base_i18n', |
| 17 '<(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', |
| 18 '<(DEPTH)/net/net.gyp:net', | 19 '<(DEPTH)/net/net.gyp:net', |
| 19 '<(DEPTH)/sql/sql.gyp:sql', | 20 '<(DEPTH)/sql/sql.gyp:sql', |
| 20 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 21 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 }], | 220 }], |
| 220 ['OS=="android"', { | 221 ['OS=="android"', { |
| 221 'defines': ['APPCACHE_USE_SIMPLE_CACHE'], | 222 'defines': ['APPCACHE_USE_SIMPLE_CACHE'], |
| 222 'direct_dependent_settings': { | 223 'direct_dependent_settings': { |
| 223 'defines': ['APPCACHE_USE_SIMPLE_CACHE'], | 224 'defines': ['APPCACHE_USE_SIMPLE_CACHE'], |
| 224 }, | 225 }, |
| 225 }], | 226 }], |
| 226 ], | 227 ], |
| 227 }, | 228 }, |
| 228 { | 229 { |
| 230 # GN version: //webkit/browser:dump_file_system |
| 229 'target_name': 'dump_file_system', | 231 'target_name': 'dump_file_system', |
| 230 'type': 'executable', | 232 'type': 'executable', |
| 231 'sources': [ | 233 'sources': [ |
| 232 'browser/fileapi/dump_file_system.cc', | 234 'browser/fileapi/dump_file_system.cc', |
| 233 ], | 235 ], |
| 234 'dependencies': [ | 236 'dependencies': [ |
| 235 '<(DEPTH)/base/base.gyp:base', | 237 '<(DEPTH)/base/base.gyp:base', |
| 236 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', | 238 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', |
| 237 'webkit_storage_browser', | 239 'webkit_storage_browser', |
| 238 ], | 240 ], |
| 239 }, | 241 }, |
| 240 ], | 242 ], |
| 241 } | 243 } |
| OLD | NEW |