diff options
author | kkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-16 04:46:14 +0000 |
---|---|---|
committer | kkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-16 04:46:14 +0000 |
commit | f05ca65c8857804c078f06b260f3175493dd4720 (patch) | |
tree | f3d22e6412bf18bf9597729d91c468c4846ab598 /webkit/fileapi/webkit_fileapi.gypi | |
parent | 88dd4bc31fbce0e6cfe7612ba3fccd08407c1cb2 (diff) | |
download | chromium_src-f05ca65c8857804c078f06b260f3175493dd4720.zip chromium_src-f05ca65c8857804c078f06b260f3175493dd4720.tar.gz chromium_src-f05ca65c8857804c078f06b260f3175493dd4720.tar.bz2 |
Test shell impl for WebKit's File System API:BUG=52799TEST=none
Also refactored a bunch of code from chrome/browser to webkit/fileapi for reuse.
Added class hierarchy. Test shell and browser operations now inherit from
common webkit/fileapi/file_system_operation.
Review URL: http://codereview.chromium.org/3186009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59616 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/webkit_fileapi.gypi')
-rw-r--r-- | webkit/fileapi/webkit_fileapi.gypi | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/webkit/fileapi/webkit_fileapi.gypi b/webkit/fileapi/webkit_fileapi.gypi new file mode 100644 index 0000000..cce29cc --- /dev/null +++ b/webkit/fileapi/webkit_fileapi.gypi @@ -0,0 +1,31 @@ +# Copyright (c) 2010 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'targets': [ + { + 'target_name': 'fileapi', + 'type': '<(library)', + 'msvs_guid': '40B53211-03ED-4932-8D53-52B172599DFE', + 'dependencies': [ + '<(DEPTH)/app/app.gyp:app_base', + '<(DEPTH)/base/base.gyp:base', + '<(DEPTH)/net/net.gyp:net', + ], + 'sources': [ + 'file_system_operation.cc', + 'file_system_operation.h', + 'file_system_operation_client.h', + ], + 'conditions': [ + ['inside_chromium_build==0', { + 'dependencies': [ + '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', + ], + }], + ], + }, + ], +} + |