summaryrefslogtreecommitdiffstats
path: root/webkit/appcache
diff options
context:
space:
mode:
authortony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-15 05:21:40 +0000
committertony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-15 05:21:40 +0000
commit9d61e1fa8f0eabc93d2f68158045a6e33baf3dc8 (patch)
treec8dd74e5bbf8a30828feb112963a9d2524083fc6 /webkit/appcache
parent12339e980e83376927f001eb7b696c9a1d3fb495 (diff)
downloadchromium_src-9d61e1fa8f0eabc93d2f68158045a6e33baf3dc8.zip
chromium_src-9d61e1fa8f0eabc93d2f68158045a6e33baf3dc8.tar.gz
chromium_src-9d61e1fa8f0eabc93d2f68158045a6e33baf3dc8.tar.bz2
Move glue, appcache, and database targets out of webkit into gypi files.
We include these new gypi files from webkit.gyp (used when building within a chromium checkout) and from webkit_support.gyp (used when building from within a webkit checkout). TEST=everything still compiles Review URL: http://codereview.chromium.org/840003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41563 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache')
-rw-r--r--webkit/appcache/webkit_appcache.gypi62
1 files changed, 62 insertions, 0 deletions
diff --git a/webkit/appcache/webkit_appcache.gypi b/webkit/appcache/webkit_appcache.gypi
new file mode 100644
index 0000000..ebf8f65
--- /dev/null
+++ b/webkit/appcache/webkit_appcache.gypi
@@ -0,0 +1,62 @@
+# 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': 'appcache',
+ 'type': '<(library)',
+ 'msvs_guid': '0B945915-31A7-4A07-A5B5-568D737A39B1',
+ 'dependencies': [
+ '<(DEPTH)/app/app.gyp:app_base',
+ '<(DEPTH)/net/net.gyp:net',
+ ],
+ 'sources': [
+ # This list contains all .h and .cc in appcache except for test code.
+ 'appcache.cc',
+ 'appcache.h',
+ 'appcache_backend_impl.cc',
+ 'appcache_backend_impl.h',
+ 'appcache_database.cc',
+ 'appcache_database.h',
+ 'appcache_entry.h',
+ 'appcache_frontend_impl.cc',
+ 'appcache_frontend_impl.h',
+ 'appcache_group.cc',
+ 'appcache_group.h',
+ 'appcache_host.cc',
+ 'appcache_host.h',
+ 'appcache_interceptor.cc',
+ 'appcache_interceptor.h',
+ 'appcache_interfaces.cc',
+ 'appcache_interfaces.h',
+ 'appcache_policy.h',
+ 'appcache_request_handler.cc',
+ 'appcache_request_handler.h',
+ 'appcache_response.cc',
+ 'appcache_response.h',
+ 'appcache_service.cc',
+ 'appcache_service.h',
+ 'appcache_storage.cc',
+ 'appcache_storage.h',
+ 'appcache_storage_impl.cc',
+ 'appcache_storage_impl.h',
+ 'appcache_thread.cc',
+ 'appcache_thread.h',
+ 'appcache_working_set.cc',
+ 'appcache_working_set.h',
+ 'appcache_update_job.cc',
+ 'appcache_update_job.h',
+ 'appcache_url_request_job.cc',
+ 'appcache_url_request_job.h',
+ 'manifest_parser.cc',
+ 'manifest_parser.h',
+ 'mock_appcache_storage.cc',
+ 'mock_appcache_storage.h',
+ 'web_application_cache_host_impl.cc',
+ 'web_application_cache_host_impl.h',
+ ],
+ },
+ ],
+}