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

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

Issue 8907014: Implement async verision of FileSystemFileUtil and in-memory file system for testing purposes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add webkit/chromeos/OWNERS Created 9 years 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) 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
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',
76 '../chromeos/fileapi/file_util_async.h',
tony 2011/12/16 18:13:25 Nit: Sort these.
satorux1 2011/12/16 22:53:22 Done.
75 '../chromeos/fileapi/cros_mount_point_provider.cc', 77 '../chromeos/fileapi/cros_mount_point_provider.cc',
76 '../chromeos/fileapi/cros_mount_point_provider.h', 78 '../chromeos/fileapi/cros_mount_point_provider.h',
77 '../chromeos/fileapi/file_access_permissions.cc', 79 '../chromeos/fileapi/file_access_permissions.cc',
78 '../chromeos/fileapi/file_access_permissions.h', 80 '../chromeos/fileapi/file_access_permissions.h',
79 ], 81 ],
80 }], 82 }],
81 ], 83 ],
82 }, 84 },
83 ], 85 ],
84 } 86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698