summaryrefslogtreecommitdiffstats
path: root/content/content_child.gypi
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-04 12:56:01 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-04 12:56:01 +0000
commitc7199a6e688ad9249ee269cc0e46af0c742e8452 (patch)
treecfdbd6953f9b5df99e9197b0925c47b789591c5e /content/content_child.gypi
parentb07a6e40cbc9189ca7740dfc1c5400e84386bfca (diff)
downloadchromium_src-c7199a6e688ad9249ee269cc0e46af0c742e8452.zip
chromium_src-c7199a6e688ad9249ee269cc0e46af0c742e8452.tar.gz
chromium_src-c7199a6e688ad9249ee269cc0e46af0c742e8452.tar.bz2
Rename content/common_child to content/child
As prerequiste for linked bug. TBR=palmer@chromium.org R=jam@chromium.org,jamesr@chromium.org BUG=246357 Review URL: https://chromiumcodereview.appspot.com/16325022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203945 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_child.gypi')
-rw-r--r--content/content_child.gypi70
1 files changed, 70 insertions, 0 deletions
diff --git a/content/content_child.gypi b/content/content_child.gypi
new file mode 100644
index 0000000..a66987e
--- /dev/null
+++ b/content/content_child.gypi
@@ -0,0 +1,70 @@
+# Copyright 2013 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.
+
+{
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../components/tracing.gyp:tracing',
+ '../ui/ui.gyp:ui',
+ '../url/url.gyp:url_lib',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'export_dependent_settings': [
+ '../base/base.gyp:base',
+ ],
+ 'sources': [
+ 'child/fileapi/webfilesystem_callback_adapters.cc',
+ 'child/fileapi/webfilesystem_callback_adapters.h',
+ 'child/fileapi/webfilesystem_impl.cc',
+ 'child/fileapi/webfilesystem_impl.h',
+ 'child/fileapi/webfilewriter_impl.cc',
+ 'child/fileapi/webfilewriter_impl.h',
+ 'child/indexed_db/indexed_db_dispatcher.cc',
+ 'child/indexed_db/indexed_db_dispatcher.h',
+ 'child/indexed_db/indexed_db_message_filter.cc',
+ 'child/indexed_db/indexed_db_message_filter.h',
+ 'child/indexed_db/proxy_webidbcursor_impl.cc',
+ 'child/indexed_db/proxy_webidbcursor_impl.h',
+ 'child/indexed_db/proxy_webidbdatabase_impl.cc',
+ 'child/indexed_db/proxy_webidbdatabase_impl.h',
+ 'child/indexed_db/proxy_webidbfactory_impl.cc',
+ 'child/indexed_db/proxy_webidbfactory_impl.h',
+ 'child/np_channel_base.cc',
+ 'child/np_channel_base.h',
+ 'child/npobject_base.h',
+ 'child/npobject_proxy.cc',
+ 'child/npobject_proxy.h',
+ 'child/npobject_stub.cc',
+ 'child/npobject_stub.h',
+ 'child/npobject_util.cc',
+ 'child/npobject_util.h',
+ 'child/plugin_message_generator.cc',
+ 'child/plugin_message_generator.h',
+ 'child/plugin_messages.h',
+ 'child/plugin_param_traits.cc',
+ 'child/plugin_param_traits.h',
+ 'child/web_database_observer_impl.cc',
+ 'child/web_database_observer_impl.h',
+ 'child/webblobregistry_impl.cc',
+ 'child/webblobregistry_impl.h',
+ ],
+ 'conditions': [
+ ['OS=="ios"', {
+ 'sources/': [
+ # iOS only needs a small portion of content; exclude all the
+ # implementation, and re-include what is used.
+ ['exclude', '\\.(cc|mm)$'],
+ ],
+ }, { # OS!="ios"
+ 'dependencies': [
+ '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
+ '../third_party/npapi/npapi.gyp:npapi',
+ '../webkit/support/webkit_support.gyp:glue',
+ '../webkit/support/webkit_support.gyp:webkit_base',
+ ],
+ }],
+ ],
+}