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

Side by Side Diff: content/content_renderer.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: use_mojo 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/content_common.gypi ('k') | content/renderer/mojo/mojo_render_process_observer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'dependencies': [ 6 'dependencies': [
7 '../gin/gin.gyp:gin', 7 '../gin/gin.gyp:gin',
8 '../jingle/jingle.gyp:jingle_glue', 8 '../jingle/jingle.gyp:jingle_glue',
9 '../media/media.gyp:media', 9 '../media/media.gyp:media',
10 '../net/net.gyp:net', 10 '../net/net.gyp:net',
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 'renderer/media/webmediasource_impl.cc', 297 'renderer/media/webmediasource_impl.cc',
298 'renderer/media/webmediasource_impl.h', 298 'renderer/media/webmediasource_impl.h',
299 'renderer/media/websourcebuffer_impl.cc', 299 'renderer/media/websourcebuffer_impl.cc',
300 'renderer/media/websourcebuffer_impl.h', 300 'renderer/media/websourcebuffer_impl.h',
301 'renderer/memory_benchmarking_extension.cc', 301 'renderer/memory_benchmarking_extension.cc',
302 'renderer/memory_benchmarking_extension.h', 302 'renderer/memory_benchmarking_extension.h',
303 'renderer/menu_item_builder.cc', 303 'renderer/menu_item_builder.cc',
304 'renderer/menu_item_builder.h', 304 'renderer/menu_item_builder.h',
305 'renderer/mhtml_generator.cc', 305 'renderer/mhtml_generator.cc',
306 'renderer/mhtml_generator.h', 306 'renderer/mhtml_generator.h',
307 'renderer/mojo/mojo_render_process_observer.cc',
308 'renderer/mojo/mojo_render_process_observer.h',
307 'renderer/mouse_lock_dispatcher.cc', 309 'renderer/mouse_lock_dispatcher.cc',
308 'renderer/mouse_lock_dispatcher.h', 310 'renderer/mouse_lock_dispatcher.h',
309 'renderer/notification_provider.cc', 311 'renderer/notification_provider.cc',
310 'renderer/notification_provider.h', 312 'renderer/notification_provider.h',
311 'renderer/npapi/plugin_channel_host.cc', 313 'renderer/npapi/plugin_channel_host.cc',
312 'renderer/npapi/plugin_channel_host.h', 314 'renderer/npapi/plugin_channel_host.h',
313 'renderer/npapi/webplugin_delegate_proxy.cc', 315 'renderer/npapi/webplugin_delegate_proxy.cc',
314 'renderer/npapi/webplugin_delegate_proxy.h', 316 'renderer/npapi/webplugin_delegate_proxy.h',
315 'renderer/npapi/webplugin_impl.cc', 317 'renderer/npapi/webplugin_impl.cc',
316 'renderer/npapi/webplugin_impl.h', 318 'renderer/npapi/webplugin_impl.h',
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 'sources!': [ 569 'sources!': [
568 'renderer/webscrollbarbehavior_impl_mac.mm', 570 'renderer/webscrollbarbehavior_impl_mac.mm',
569 'renderer/webscrollbarbehavior_impl_mac.h', 571 'renderer/webscrollbarbehavior_impl_mac.h',
570 ], 572 ],
571 }], 573 }],
572 ['OS=="win" and win_use_allocator_shim==1', { 574 ['OS=="win" and win_use_allocator_shim==1', {
573 'dependencies': [ 575 'dependencies': [
574 '../base/allocator/allocator.gyp:allocator', 576 '../base/allocator/allocator.gyp:allocator',
575 ], 577 ],
576 }], 578 }],
577 # TODO(sky): temporary until mojo runs on mac. 579 ['use_mojo==0', {
578 ['OS=="mac"', {
579 'sources!': [ 580 'sources!': [
581 'renderer/mojo/mojo_render_process_observer.cc',
582 'renderer/mojo/mojo_render_process_observer.h',
580 'renderer/web_ui_mojo.cc', 583 'renderer/web_ui_mojo.cc',
581 'renderer/web_ui_mojo.h', 584 'renderer/web_ui_mojo.h',
582 'renderer/web_ui_mojo_context_state.cc', 585 'renderer/web_ui_mojo_context_state.cc',
583 'renderer/web_ui_mojo_context_state.h', 586 'renderer/web_ui_mojo_context_state.h',
584 'renderer/web_ui_runner.cc', 587 'renderer/web_ui_runner.cc',
585 'renderer/web_ui_runner.h', 588 'renderer/web_ui_runner.h',
586 ], 589 ],
587 }, { 590 }, {
588 'dependencies': [ 591 'dependencies': [
589 '../mojo/mojo.gyp:mojo_environment_chromium', 592 '../mojo/mojo.gyp:mojo_environment_chromium',
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 }], 781 }],
779 ], 782 ],
780 'target_conditions': [ 783 'target_conditions': [
781 ['OS=="android"', { 784 ['OS=="android"', {
782 'sources/': [ 785 'sources/': [
783 ['include', '^renderer/render_view_linux\\.cc$'], 786 ['include', '^renderer/render_view_linux\\.cc$'],
784 ], 787 ],
785 }], 788 }],
786 ], 789 ],
787 } 790 }
OLDNEW
« no previous file with comments | « content/content_common.gypi ('k') | content/renderer/mojo/mojo_render_process_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698