summaryrefslogtreecommitdiffstats
path: root/webkit/support/webkit_support.gypi
diff options
context:
space:
mode:
authortkent@google.com <tkent@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-04 08:25:08 +0000
committertkent@google.com <tkent@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-04 08:25:08 +0000
commit43b3be394cf9062a2b80e4dba5d880759d060633 (patch)
tree074b05cf00d1df1e057f8cedcc23774519cbd988 /webkit/support/webkit_support.gypi
parentebaac267c41fce4a5b8ed4341ba32be40c7ac43e (diff)
downloadchromium_src-43b3be394cf9062a2b80e4dba5d880759d060633.zip
chromium_src-43b3be394cf9062a2b80e4dba5d880759d060633.tar.gz
chromium_src-43b3be394cf9062a2b80e4dba5d880759d060633.tar.bz2
Initial change for DumpRrenderTree support library
This library provides: - An implementation of WebKitClient, - An implementation of WebPlugin, - An implementation of WebMediaPalyer, - Initialization and termination functions, - Two function for database, and - Some functions required by webkit_glue. webkit_support.gyp is not referred by build/all.gyp. A gyp for DRT/chromium in WebKit tree will refer to it. BUG=none TEST=none. This is a part of test code. Review URL: http://codereview.chromium.org/652226 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40610 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/support/webkit_support.gypi')
-rw-r--r--webkit/support/webkit_support.gypi48
1 files changed, 48 insertions, 0 deletions
diff --git a/webkit/support/webkit_support.gypi b/webkit/support/webkit_support.gypi
new file mode 100644
index 0000000..cc8cc02
--- /dev/null
+++ b/webkit/support/webkit_support.gypi
@@ -0,0 +1,48 @@
+# 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': 'webkit_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ '<(DEPTH)/media/media.gyp:media',
+ '<(DEPTH)/skia/skia.gyp:skia',
+ '<(DEPTH)/webkit/webkit.gyp:appcache',
+ '<(DEPTH)/webkit/webkit.gyp:database',
+ '<(DEPTH)/webkit/webkit.gyp:glue',
+ ],
+ 'sources': [
+ 'test_webkit_client.cc',
+ 'test_webkit_client.h',
+ 'test_webplugin_page_delegate.h',
+ 'webkit_support.cc',
+ 'webkit_support.h',
+ 'webkit_support_glue.cc',
+ # TODO(tkent): Move the following files to here.
+ '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.cc',
+ '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.h',
+ '<(DEPTH)/webkit/tools/test_shell/simple_appcache_system.cc',
+ '<(DEPTH)/webkit/tools/test_shell/simple_appcache_system.h',
+ '<(DEPTH)/webkit/tools/test_shell/simple_clipboard_impl.cc',
+ '<(DEPTH)/webkit/tools/test_shell/simple_database_system.cc',
+ '<(DEPTH)/webkit/tools/test_shell/simple_database_system.h',
+ '<(DEPTH)/webkit/tools/test_shell/simple_resource_loader_bridge.cc',
+ '<(DEPTH)/webkit/tools/test_shell/simple_resource_loader_bridge.h',
+ '<(DEPTH)/webkit/tools/test_shell/simple_socket_stream_bridge.cc',
+ '<(DEPTH)/webkit/tools/test_shell/simple_socket_stream_bridge.h',
+ '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.cc',
+ '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.h',
+ '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.cc',
+ '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.h',
+ ],
+ },
+ ],
+}
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2: