From 892691bb7ba8fca79ad6a3d24c3240fcbf19ccc2 Mon Sep 17 00:00:00 2001 From: "sky@chromium.org" Date: Sat, 22 Mar 2014 03:25:24 +0000 Subject: 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 --- content/content_common_mojo_bindings.gypi | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 content/content_common_mojo_bindings.gypi (limited to 'content/content_common_mojo_bindings.gypi') 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', + ], + }, + ], +} -- cgit v1.1