Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: webkit/fileapi/webkit_fileapi.gypi

Issue 10126004: fileapi: FileWriter and LocalFileWriter. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: First working version. Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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': 'fileapi', 8 'target_name': 'fileapi',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'file_system_url_request_job.cc', 50 'file_system_url_request_job.cc',
51 'file_system_url_request_job.h', 51 'file_system_url_request_job.h',
52 'file_system_url_request_job_factory.cc', 52 'file_system_url_request_job_factory.cc',
53 'file_system_url_request_job_factory.h', 53 'file_system_url_request_job_factory.h',
54 'file_system_usage_cache.cc', 54 'file_system_usage_cache.cc',
55 'file_system_usage_cache.h', 55 'file_system_usage_cache.h',
56 'file_system_util.cc', 56 'file_system_util.cc',
57 'file_system_util.h', 57 'file_system_util.h',
58 'file_util_helper.cc', 58 'file_util_helper.cc',
59 'file_util_helper.h', 59 'file_util_helper.h',
60 'file_writer.h',
60 'file_writer_delegate.cc', 61 'file_writer_delegate.cc',
61 'file_writer_delegate.h', 62 'file_writer_delegate.h',
62 'isolated_context.cc', 63 'isolated_context.cc',
63 'isolated_context.h', 64 'isolated_context.h',
64 'isolated_file_util.cc', 65 'isolated_file_util.cc',
65 'isolated_file_util.h', 66 'isolated_file_util.h',
66 'isolated_mount_point_provider.cc', 67 'isolated_mount_point_provider.cc',
67 'isolated_mount_point_provider.h', 68 'isolated_mount_point_provider.h',
68 'local_file_util.cc', 69 'local_file_util.cc',
69 'local_file_util.h', 70 'local_file_util.h',
71 'local_file_writer.cc',
72 'local_file_writer.h',
70 'native_file_util.cc', 73 'native_file_util.cc',
71 'native_file_util.h', 74 'native_file_util.h',
72 'obfuscated_file_util.cc', 75 'obfuscated_file_util.cc',
73 'obfuscated_file_util.h', 76 'obfuscated_file_util.h',
74 'quota_file_util.cc', 77 'quota_file_util.cc',
75 'quota_file_util.h', 78 'quota_file_util.h',
76 'sandbox_mount_point_provider.cc', 79 'sandbox_mount_point_provider.cc',
77 'sandbox_mount_point_provider.h', 80 'sandbox_mount_point_provider.h',
78 'webfilewriter_base.cc', 81 'webfilewriter_base.cc',
79 'webfilewriter_base.h', 82 'webfilewriter_base.h',
(...skipping 14 matching lines...) Expand all
94 '../chromeos/fileapi/file_util_async.h', 97 '../chromeos/fileapi/file_util_async.h',
95 '../chromeos/fileapi/remote_file_system_operation.cc', 98 '../chromeos/fileapi/remote_file_system_operation.cc',
96 '../chromeos/fileapi/remote_file_system_operation.h', 99 '../chromeos/fileapi/remote_file_system_operation.h',
97 '../chromeos/fileapi/remote_file_system_proxy.h', 100 '../chromeos/fileapi/remote_file_system_proxy.h',
98 ], 101 ],
99 }], 102 }],
100 ], 103 ],
101 }, 104 },
102 ], 105 ],
103 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698