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

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

Issue 10781014: Isolated FS for media devices. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 8 years, 4 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
« no previous file with comments | « webkit/fileapi/media/mtp_device_interface_impl_linux.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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': '<(component)', 9 'type': '<(component)',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'isolated_file_util.cc', 65 'isolated_file_util.cc',
66 'isolated_file_util.h', 66 'isolated_file_util.h',
67 'isolated_mount_point_provider.cc', 67 'isolated_mount_point_provider.cc',
68 'isolated_mount_point_provider.h', 68 'isolated_mount_point_provider.h',
69 'local_file_util.cc', 69 'local_file_util.cc',
70 'local_file_util.h', 70 'local_file_util.h',
71 'local_file_stream_writer.cc', 71 'local_file_stream_writer.cc',
72 'local_file_stream_writer.h', 72 'local_file_stream_writer.h',
73 'local_file_system_operation.cc', 73 'local_file_system_operation.cc',
74 'local_file_system_operation.h', 74 'local_file_system_operation.h',
75 'media/media_file_system_config.h',
75 'media/media_path_filter.cc', 76 'media/media_path_filter.cc',
76 'media/media_path_filter.h', 77 'media/media_path_filter.h',
77 'media/native_media_file_util.cc', 78 'media/native_media_file_util.cc',
78 'media/native_media_file_util.h', 79 'media/native_media_file_util.h',
79 'native_file_util.cc', 80 'native_file_util.cc',
80 'native_file_util.h', 81 'native_file_util.h',
81 'obfuscated_file_util.cc', 82 'obfuscated_file_util.cc',
82 'obfuscated_file_util.h', 83 'obfuscated_file_util.h',
83 'sandbox_file_stream_writer.cc', 84 'sandbox_file_stream_writer.cc',
84 'sandbox_file_stream_writer.h', 85 'sandbox_file_stream_writer.h',
85 'sandbox_mount_point_provider.cc', 86 'sandbox_mount_point_provider.cc',
86 'sandbox_mount_point_provider.h', 87 'sandbox_mount_point_provider.h',
87 'test_mount_point_provider.cc', 88 'test_mount_point_provider.cc',
88 'test_mount_point_provider.h', 89 'test_mount_point_provider.h',
89 'webfilewriter_base.cc', 90 'webfilewriter_base.cc',
90 'webfilewriter_base.h', 91 'webfilewriter_base.h',
91 ], 92 ],
92 'conditions': [ 93 'conditions': [
93 ['inside_chromium_build==0', { 94 ['inside_chromium_build==0', {
94 'dependencies': [ 95 'dependencies': [
95 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 96 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
96 ], 97 ],
97 }], 98 }],
99 ['OS == "linux"', {
100 'sources': [
101 'media/device_media_file_util.cc',
102 'media/device_media_file_util.h',
103 'media/media_device_interface.h',
104 'media/media_device_interface_impl.h',
105 'media/media_device_map_service.cc',
106 'media/media_device_map_service.h',
107 'media/mtp_device_interface_impl_linux.cc',
108 'media/mtp_device_interface_impl_linux.h',
109 ],
110 }],
98 ['chromeos==1', { 111 ['chromeos==1', {
99 'sources': [ 112 'sources': [
100 '../chromeos/fileapi/async_file_stream.h', 113 '../chromeos/fileapi/async_file_stream.h',
101 '../chromeos/fileapi/cros_mount_point_provider.cc', 114 '../chromeos/fileapi/cros_mount_point_provider.cc',
102 '../chromeos/fileapi/cros_mount_point_provider.h', 115 '../chromeos/fileapi/cros_mount_point_provider.h',
103 '../chromeos/fileapi/file_access_permissions.cc', 116 '../chromeos/fileapi/file_access_permissions.cc',
104 '../chromeos/fileapi/file_access_permissions.h', 117 '../chromeos/fileapi/file_access_permissions.h',
105 '../chromeos/fileapi/file_util_async.h', 118 '../chromeos/fileapi/file_util_async.h',
106 '../chromeos/fileapi/remote_file_system_operation.cc', 119 '../chromeos/fileapi/remote_file_system_operation.cc',
107 '../chromeos/fileapi/remote_file_system_operation.h', 120 '../chromeos/fileapi/remote_file_system_operation.h',
108 '../chromeos/fileapi/remote_file_system_proxy.h', 121 '../chromeos/fileapi/remote_file_system_proxy.h',
109 '../chromeos/fileapi/remote_file_stream_writer.cc', 122 '../chromeos/fileapi/remote_file_stream_writer.cc',
110 '../chromeos/fileapi/remote_file_stream_writer.h', 123 '../chromeos/fileapi/remote_file_stream_writer.h',
111 ], 124 ],
112 }], 125 }],
113 ], 126 ],
114 }, 127 },
115 ], 128 ],
116 } 129 }
OLDNEW
« no previous file with comments | « webkit/fileapi/media/mtp_device_interface_impl_linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698