summaryrefslogtreecommitdiffstats
path: root/content/content_common_mojo_bindings.gypi
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-22 03:25:24 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-22 03:25:24 +0000
commit892691bb7ba8fca79ad6a3d24c3240fcbf19ccc2 (patch)
tree0798ae3b7568679b2a9d76b272c6cdd780ba4dc6 /content/content_common_mojo_bindings.gypi
parentaed4fd65e2faeefe32c6b139a3f1e4047f137ae1 (diff)
downloadchromium_src-892691bb7ba8fca79ad6a3d24c3240fcbf19ccc2.zip
chromium_src-892691bb7ba8fca79ad6a3d24c3240fcbf19ccc2.tar.gz
chromium_src-892691bb7ba8fca79ad6a3d24c3240fcbf19ccc2.tar.bz2
Adds plumbing to pass WebUI mojo::Handle from browser to renderer
See the test for details on how it'll all work out in practice. BUG=none TEST=none R=darin@chromium.org Review URL: https://codereview.chromium.org/206923002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258763 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_common_mojo_bindings.gypi')
-rw-r--r--content/content_common_mojo_bindings.gypi26
1 files changed, 26 insertions, 0 deletions
diff --git a/content/content_common_mojo_bindings.gypi b/content/content_common_mojo_bindings.gypi
new file mode 100644
index 0000000..d9d7a61
--- /dev/null
+++ b/content/content_common_mojo_bindings.gypi
@@ -0,0 +1,26 @@
+# Copyright 2014 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': 'content_common_mojo_bindings',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../mojo/mojo.gyp:mojo_bindings',
+ '../mojo/mojo.gyp:mojo_environment_chromium',
+ '../mojo/mojo.gyp:mojo_system',
+ ],
+ 'sources': [
+ 'common/mojo/render_process.mojom',
+ ],
+ 'includes': [ '../mojo/public/bindings/mojom_bindings_generator.gypi' ],
+ 'export_dependent_settings': [
+ '../mojo/mojo.gyp:mojo_bindings',
+ '../mojo/mojo.gyp:mojo_environment_chromium',
+ '../mojo/mojo.gyp:mojo_system',
+ ],
+ },
+ ],
+}