Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: content/content_common.gypi

Issue 195993010: Adds the ability for the renderer to create the mojo channel (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/content_common.gypi
diff --git a/content/content_common.gypi b/content/content_common.gypi
index a97dc654ff84390835bc58d89f1330a5b0ef6268..1c3a3a6d95f95cdb24508de09c11cb0e253b07b0 100644
--- a/content/content_common.gypi
+++ b/content/content_common.gypi
@@ -321,6 +321,9 @@
'common/message_router.cc',
'common/message_router.h',
'common/mime_registry_messages.h',
+ 'common/mojo/mojo_channel_init.cc',
+ 'common/mojo/mojo_channel_init.h',
+ 'common/mojo/mojo_messages.h',
'common/navigation_gesture.h',
'common/net/url_fetcher.cc',
'common/net/url_request_user_data.cc',
@@ -476,6 +479,19 @@
'content.gyp:webkit_version',
],
}],
+ # TODO(sky): conditional temporary until mojo is building on android and mac.
+ ['OS=="android" or OS=="mac"', {
+ 'sources!': [
+ 'common/mojo/mojo_channel_init.cc',
+ 'common/mojo/mojo_channel_init.h',
+ ],
+ }, {
+ 'dependencies': [
+ '../mojo/mojo.gyp:mojo_environment_chromium',
+ '../mojo/mojo.gyp:mojo_system',
+ '../mojo/mojo.gyp:mojo_system_impl',
+ ],
+ }],
['OS=="mac"', {
'sources': [
'common/gpu/client/gpu_memory_buffer_impl_io_surface.cc',

Powered by Google App Engine
This is Rietveld 408576698