| 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, }, |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 'browser/quota/quota_manager.h', | 234 'browser/quota/quota_manager.h', |
| 235 'browser/quota/quota_task.cc', | 235 'browser/quota/quota_task.cc', |
| 236 'browser/quota/quota_task.h', | 236 'browser/quota/quota_task.h', |
| 237 'browser/quota/quota_temporary_storage_evictor.cc', | 237 'browser/quota/quota_temporary_storage_evictor.cc', |
| 238 'browser/quota/quota_temporary_storage_evictor.h', | 238 'browser/quota/quota_temporary_storage_evictor.h', |
| 239 'browser/quota/special_storage_policy.cc', | 239 'browser/quota/special_storage_policy.cc', |
| 240 'browser/quota/special_storage_policy.h', | 240 'browser/quota/special_storage_policy.h', |
| 241 'browser/quota/usage_tracker.cc', | 241 'browser/quota/usage_tracker.cc', |
| 242 'browser/quota/usage_tracker.h', | 242 'browser/quota/usage_tracker.h', |
| 243 ], | 243 ], |
| 244 'conditions': [ | |
| 245 ['chromeos==1', { | |
| 246 'sources': [ | |
| 247 'browser/chromeos/fileapi/async_file_stream.h', | |
| 248 'browser/chromeos/fileapi/cros_mount_point_provider.cc', | |
| 249 'browser/chromeos/fileapi/cros_mount_point_provider.h', | |
| 250 'browser/chromeos/fileapi/file_access_permissions.cc', | |
| 251 'browser/chromeos/fileapi/file_access_permissions.h', | |
| 252 'browser/chromeos/fileapi/file_util_async.h', | |
| 253 'browser/chromeos/fileapi/remote_file_system_operation.cc', | |
| 254 'browser/chromeos/fileapi/remote_file_system_operation.h', | |
| 255 'browser/chromeos/fileapi/remote_file_stream_writer.cc', | |
| 256 'browser/chromeos/fileapi/remote_file_stream_writer.h', | |
| 257 ], | |
| 258 }], | |
| 259 ], | |
| 260 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 244 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 261 'msvs_disabled_warnings': [ 4267, ], | 245 'msvs_disabled_warnings': [ 4267, ], |
| 262 }, | 246 }, |
| 263 { | 247 { |
| 264 'target_name': 'dump_file_system', | 248 'target_name': 'dump_file_system', |
| 265 'type': 'executable', | 249 'type': 'executable', |
| 266 'sources': [ | 250 'sources': [ |
| 267 'browser/fileapi/dump_file_system.cc', | 251 'browser/fileapi/dump_file_system.cc', |
| 268 ], | 252 ], |
| 269 'dependencies': [ | 253 'dependencies': [ |
| 270 '<(DEPTH)/base/base.gyp:base', | 254 '<(DEPTH)/base/base.gyp:base', |
| 271 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', | 255 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', |
| 272 'webkit_storage_browser', | 256 'webkit_storage_browser', |
| 273 ], | 257 ], |
| 274 }, | 258 }, |
| 275 ], | 259 ], |
| 276 } | 260 } |
| OLD | NEW |