| 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 '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 'webfilewriter_base.h', | 65 'webfilewriter_base.h', |
| 66 ], | 66 ], |
| 67 'conditions': [ | 67 'conditions': [ |
| 68 ['inside_chromium_build==0', { | 68 ['inside_chromium_build==0', { |
| 69 'dependencies': [ | 69 'dependencies': [ |
| 70 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 70 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
| 71 ], | 71 ], |
| 72 }], | 72 }], |
| 73 ['chromeos==1', { | 73 ['chromeos==1', { |
| 74 'sources': [ | 74 'sources': [ |
| 75 '../chromeos/fileapi/async_file_stream.h', |
| 75 '../chromeos/fileapi/cros_mount_point_provider.cc', | 76 '../chromeos/fileapi/cros_mount_point_provider.cc', |
| 76 '../chromeos/fileapi/cros_mount_point_provider.h', | 77 '../chromeos/fileapi/cros_mount_point_provider.h', |
| 77 '../chromeos/fileapi/file_access_permissions.cc', | 78 '../chromeos/fileapi/file_access_permissions.cc', |
| 78 '../chromeos/fileapi/file_access_permissions.h', | 79 '../chromeos/fileapi/file_access_permissions.h', |
| 80 '../chromeos/fileapi/file_util_async.h', |
| 79 ], | 81 ], |
| 80 }], | 82 }], |
| 81 ], | 83 ], |
| 82 }, | 84 }, |
| 83 ], | 85 ], |
| 84 } | 86 } |
| OLD | NEW |