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

Side by Side Diff: content/content_renderer.gypi

Issue 381683003: Fix enable_webrtc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add ifdef on socket_dispatcher_host.h Created 6 years, 5 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
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 'content_common_mojo_bindings', 7 'content_common_mojo_bindings',
8 '../base/base.gyp:base', 8 '../base/base.gyp:base',
9 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann otations', 9 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann otations',
10 '../cc/cc.gyp:cc', 10 '../cc/cc.gyp:cc',
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after
846 ], 846 ],
847 }], 847 }],
848 ['enable_plugins==1', { 848 ['enable_plugins==1', {
849 'sources': [ 849 'sources': [
850 '<@(private_renderer_plugin_sources)', 850 '<@(private_renderer_plugin_sources)',
851 ], 851 ],
852 'dependencies': [ 852 'dependencies': [
853 '../ppapi/ppapi_internal.gyp:ppapi_host', 853 '../ppapi/ppapi_internal.gyp:ppapi_host',
854 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 854 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
855 '../ppapi/ppapi_internal.gyp:ppapi_shared', 855 '../ppapi/ppapi_internal.gyp:ppapi_shared',
856 '../third_party/libyuv/libyuv.gyp:libyuv',
856 ], 857 ],
857 }, { # enable_plugins==0 858 }, { # enable_plugins==0
858 'sources!': [ 859 'sources!': [
859 # These are not in the plugins sources list since it also requires webrt c. 860 # These are not in the plugins sources list since it also requires webrt c.
860 'renderer/media/webrtc/video_destination_handler.cc', 861 'renderer/media/webrtc/video_destination_handler.cc',
861 'renderer/media/webrtc/video_destination_handler.h', 862 'renderer/media/webrtc/video_destination_handler.h',
862 ], 863 ],
863 }], 864 }],
864 ['enable_plugins==1 and enable_webrtc==1', { 865 ['enable_plugins==1 and enable_webrtc==1', {
865 'sources': [ 866 'sources': [
(...skipping 16 matching lines...) Expand all
882 }], 883 }],
883 ], 884 ],
884 'target_conditions': [ 885 'target_conditions': [
885 ['OS=="android"', { 886 ['OS=="android"', {
886 'sources/': [ 887 'sources/': [
887 ['include', '^renderer/render_view_linux\\.cc$'], 888 ['include', '^renderer/render_view_linux\\.cc$'],
888 ], 889 ],
889 }], 890 }],
890 ], 891 ],
891 } 892 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698