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

Side by Side 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: 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_browser.gypi ('k') | content/content_renderer.gypi » ('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 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../net/net.gyp:net', 9 '../net/net.gyp:net',
10 '../skia/skia.gyp:skia', 10 '../skia/skia.gyp:skia',
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 'common/media/media_stream_track_metrics_host_messages.h', 322 'common/media/media_stream_track_metrics_host_messages.h',
323 'common/media/midi_messages.h', 323 'common/media/midi_messages.h',
324 'common/media/video_capture.h', 324 'common/media/video_capture.h',
325 'common/media/video_capture_messages.h', 325 'common/media/video_capture_messages.h',
326 'common/media/webrtc_identity_messages.h', 326 'common/media/webrtc_identity_messages.h',
327 'common/memory_benchmark_messages.h', 327 'common/memory_benchmark_messages.h',
328 'common/message_port_messages.h', 328 'common/message_port_messages.h',
329 'common/message_router.cc', 329 'common/message_router.cc',
330 'common/message_router.h', 330 'common/message_router.h',
331 'common/mime_registry_messages.h', 331 'common/mime_registry_messages.h',
332 'common/mojo/mojo_channel_init.cc',
333 'common/mojo/mojo_channel_init.h',
334 'common/mojo/mojo_messages.h',
332 'common/navigation_gesture.h', 335 'common/navigation_gesture.h',
333 'common/net/url_fetcher.cc', 336 'common/net/url_fetcher.cc',
334 'common/net/url_request_user_data.cc', 337 'common/net/url_request_user_data.cc',
335 'common/net/url_request_user_data.h', 338 'common/net/url_request_user_data.h',
336 'common/one_writer_seqlock.cc', 339 'common/one_writer_seqlock.cc',
337 'common/one_writer_seqlock.h', 340 'common/one_writer_seqlock.h',
338 'common/p2p_messages.h', 341 'common/p2p_messages.h',
339 'common/page_state_serialization.cc', 342 'common/page_state_serialization.cc',
340 'common/page_state_serialization.h', 343 'common/page_state_serialization.h',
341 'common/page_zoom.cc', 344 'common/page_zoom.cc',
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 '../media/media.gyp:shared_memory_support', 480 '../media/media.gyp:shared_memory_support',
478 '../third_party/WebKit/public/blink.gyp:blink', 481 '../third_party/WebKit/public/blink.gyp:blink',
479 '../ui/gl/gl.gyp:gl', 482 '../ui/gl/gl.gyp:gl',
480 '../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', 483 '../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu',
481 '../webkit/common/webkit_common.gyp:webkit_common', 484 '../webkit/common/webkit_common.gyp:webkit_common',
482 '../webkit/storage_browser.gyp:webkit_storage_browser', 485 '../webkit/storage_browser.gyp:webkit_storage_browser',
483 '../webkit/storage_common.gyp:webkit_storage_common', 486 '../webkit/storage_common.gyp:webkit_storage_common',
484 'content.gyp:webkit_version', 487 'content.gyp:webkit_version',
485 ], 488 ],
486 }], 489 }],
490 # Work around for bug in linker used on ia32 machines (gold is not used on
491 # ia32 machines). See bug 353273.
492 ['use_mojo==1 and OS=="linux" and target_arch=="ia32" and component=="static _library"', {
493 'link_settings': {
494 'libraries': [
495 '<(PRODUCT_DIR)/lib/libmojo_system.so',
496 ],
497 },
498 }],
499 ['use_mojo==0', {
500 'sources!': [
501 'common/mojo/mojo_channel_init.cc',
502 'common/mojo/mojo_channel_init.h',
503 ],
504 }, {
505 'dependencies': [
506 '../mojo/mojo.gyp:mojo_environment_chromium',
507 '../mojo/mojo.gyp:mojo_system',
508 '../mojo/mojo.gyp:mojo_system_impl',
509 ],
510 }],
487 ['OS=="mac"', { 511 ['OS=="mac"', {
488 'sources': [ 512 'sources': [
489 'common/gpu/client/gpu_memory_buffer_impl_io_surface.cc', 513 'common/gpu/client/gpu_memory_buffer_impl_io_surface.cc',
490 'common/gpu/client/gpu_memory_buffer_impl_io_surface.h', 514 'common/gpu/client/gpu_memory_buffer_impl_io_surface.h',
491 ], 515 ],
492 'sources!': [ 516 'sources!': [
493 'common/plugin_list_posix.cc', 517 'common/plugin_list_posix.cc',
494 ], 518 ],
495 'link_settings': { 519 'link_settings': {
496 'libraries': [ 520 'libraries': [
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 'common/sandbox_linux/bpf_renderer_policy_linux.cc', 734 'common/sandbox_linux/bpf_renderer_policy_linux.cc',
711 'common/sandbox_linux/bpf_renderer_policy_linux.h', 735 'common/sandbox_linux/bpf_renderer_policy_linux.h',
712 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', 736 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc',
713 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', 737 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h',
714 ], 738 ],
715 }, { 739 }, {
716 'defines': ['USE_SECCOMP_BPF'], 740 'defines': ['USE_SECCOMP_BPF'],
717 }], 741 }],
718 ], 742 ],
719 } 743 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698