OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'dependencies': [ | 10 'dependencies': [ |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 'file_system_url_request_job.cc', | 43 'file_system_url_request_job.cc', |
44 'file_system_url_request_job.h', | 44 'file_system_url_request_job.h', |
45 'file_system_url_request_job_factory.cc', | 45 'file_system_url_request_job_factory.cc', |
46 'file_system_url_request_job_factory.h', | 46 'file_system_url_request_job_factory.h', |
47 'file_system_usage_cache.cc', | 47 'file_system_usage_cache.cc', |
48 'file_system_usage_cache.h', | 48 'file_system_usage_cache.h', |
49 'file_system_util.cc', | 49 'file_system_util.cc', |
50 'file_system_util.h', | 50 'file_system_util.h', |
51 'file_writer_delegate.cc', | 51 'file_writer_delegate.cc', |
52 'file_writer_delegate.h', | 52 'file_writer_delegate.h', |
53 'local_file_system_file_util.cc', | 53 'local_file_util.cc', |
54 'local_file_system_file_util.h', | 54 'local_file_util.h', |
55 'obfuscated_file_system_file_util.cc', | 55 'native_file_util.cc', |
56 'obfuscated_file_system_file_util.h', | 56 'native_file_util.h', |
| 57 'obfuscated_file_util.cc', |
| 58 'obfuscated_file_util.h', |
57 'quota_file_util.cc', | 59 'quota_file_util.cc', |
58 'quota_file_util.h', | 60 'quota_file_util.h', |
59 'sandbox_mount_point_provider.cc', | 61 'sandbox_mount_point_provider.cc', |
60 'sandbox_mount_point_provider.h', | 62 'sandbox_mount_point_provider.h', |
61 'webfilewriter_base.cc', | 63 'webfilewriter_base.cc', |
62 'webfilewriter_base.h', | 64 'webfilewriter_base.h', |
63 ], | 65 ], |
64 'conditions': [ | 66 'conditions': [ |
65 ['inside_chromium_build==0', { | 67 ['inside_chromium_build==0', { |
66 'dependencies': [ | 68 'dependencies': [ |
67 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 69 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
68 ], | 70 ], |
69 }], | 71 }], |
70 ['chromeos==1', { | 72 ['chromeos==1', { |
71 'sources': [ | 73 'sources': [ |
72 '../chromeos/fileapi/cros_mount_point_provider.cc', | 74 '../chromeos/fileapi/cros_mount_point_provider.cc', |
73 '../chromeos/fileapi/cros_mount_point_provider.h', | 75 '../chromeos/fileapi/cros_mount_point_provider.h', |
74 '../chromeos/fileapi/file_access_permissions.cc', | 76 '../chromeos/fileapi/file_access_permissions.cc', |
75 '../chromeos/fileapi/file_access_permissions.h', | 77 '../chromeos/fileapi/file_access_permissions.h', |
76 ], | 78 ], |
77 }], | 79 }], |
78 ], | 80 ], |
79 }, | 81 }, |
80 ], | 82 ], |
81 } | 83 } |
OLD | NEW |