OLD | NEW |
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 Loading... |
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 'native_file_util.cc', | 76 'native_file_util.cc', |
76 'native_file_util.h', | 77 'native_file_util.h', |
77 'obfuscated_file_util.cc', | 78 'obfuscated_file_util.cc', |
78 'obfuscated_file_util.h', | 79 'obfuscated_file_util.h', |
79 'sandbox_file_stream_writer.cc', | 80 'sandbox_file_stream_writer.cc', |
80 'sandbox_file_stream_writer.h', | 81 'sandbox_file_stream_writer.h', |
81 'sandbox_mount_point_provider.cc', | 82 'sandbox_mount_point_provider.cc', |
82 'sandbox_mount_point_provider.h', | 83 'sandbox_mount_point_provider.h', |
83 'test_mount_point_provider.cc', | 84 'test_mount_point_provider.cc', |
84 'test_mount_point_provider.h', | 85 'test_mount_point_provider.h', |
85 'webfilewriter_base.cc', | 86 'webfilewriter_base.cc', |
86 'webfilewriter_base.h', | 87 'webfilewriter_base.h', |
87 ], | 88 ], |
88 'conditions': [ | 89 'conditions': [ |
89 ['inside_chromium_build==0', { | 90 ['inside_chromium_build==0', { |
90 'dependencies': [ | 91 'dependencies': [ |
91 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 92 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
92 ], | 93 ], |
93 }], | 94 }], |
| 95 ['os_posix == 1 and OS != "mac"', { |
| 96 'sources': [ |
| 97 'media/device_media_file_util.cc', |
| 98 'media/device_media_file_util.h', |
| 99 'media/media_device_interface.h', |
| 100 'media/media_device_interface_impl.h', |
| 101 'media/media_device_map_service.cc', |
| 102 'media/media_device_map_service.h', |
| 103 'media/mtp_device_interface_impl_linux.cc', |
| 104 'media/mtp_device_interface_impl_linux.h', |
| 105 ], |
| 106 }], |
94 ['chromeos==1', { | 107 ['chromeos==1', { |
95 'sources': [ | 108 'sources': [ |
96 '../chromeos/fileapi/async_file_stream.h', | 109 '../chromeos/fileapi/async_file_stream.h', |
97 '../chromeos/fileapi/cros_mount_point_provider.cc', | 110 '../chromeos/fileapi/cros_mount_point_provider.cc', |
98 '../chromeos/fileapi/cros_mount_point_provider.h', | 111 '../chromeos/fileapi/cros_mount_point_provider.h', |
99 '../chromeos/fileapi/file_access_permissions.cc', | 112 '../chromeos/fileapi/file_access_permissions.cc', |
100 '../chromeos/fileapi/file_access_permissions.h', | 113 '../chromeos/fileapi/file_access_permissions.h', |
101 '../chromeos/fileapi/file_util_async.h', | 114 '../chromeos/fileapi/file_util_async.h', |
102 '../chromeos/fileapi/remote_file_system_operation.cc', | 115 '../chromeos/fileapi/remote_file_system_operation.cc', |
103 '../chromeos/fileapi/remote_file_system_operation.h', | 116 '../chromeos/fileapi/remote_file_system_operation.h', |
104 '../chromeos/fileapi/remote_file_system_proxy.h', | 117 '../chromeos/fileapi/remote_file_system_proxy.h', |
105 '../chromeos/fileapi/remote_file_stream_writer.cc', | 118 '../chromeos/fileapi/remote_file_stream_writer.cc', |
106 '../chromeos/fileapi/remote_file_stream_writer.h', | 119 '../chromeos/fileapi/remote_file_stream_writer.h', |
107 ], | 120 ], |
108 }], | 121 }], |
109 ], | 122 ], |
110 }, | 123 }, |
111 ], | 124 ], |
112 } | 125 } |
OLD | NEW |