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

Side by Side Diff: content/content_common.gypi

Issue 1728453002: Enable H.264 video WebRTC behind run-time flag and add WebRtcBrowserTest for H.264 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: #define macro instead of BUILDFLAG. common_features (aka renderer_features) deleted. Created 4 years, 10 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
« no previous file with comments | « content/content.gyp ('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 '../cc/cc.gyp:cc', 8 '../cc/cc.gyp:cc',
9 '../components/tracing.gyp:tracing', 9 '../components/tracing.gyp:tracing',
10 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 10 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after
791 ], 791 ],
792 'sources': [ 792 'sources': [
793 'common/gpu/media/android_video_encode_accelerator.cc', 793 'common/gpu/media/android_video_encode_accelerator.cc',
794 'common/gpu/media/android_video_encode_accelerator.h', 794 'common/gpu/media/android_video_encode_accelerator.h',
795 ], 795 ],
796 }], 796 }],
797 ['enable_webrtc==1', { 797 ['enable_webrtc==1', {
798 'dependencies': [ 798 'dependencies': [
799 '../third_party/libjingle/libjingle.gyp:libjingle', 799 '../third_party/libjingle/libjingle.gyp:libjingle',
800 ], 800 ],
801 'includes': [
802 '../third_party/webrtc/build/common.gypi',
803 ],
804 'conditions': [
805 ['rtc_use_h264==1', {
806 'defines': [
807 'BUILDFLAG_RTC_USE_H264',
808 ],
809 }],
810 ],
801 'sources': [ 811 'sources': [
802 'public/common/webrtc_ip_handling_policy.cc', 812 'public/common/webrtc_ip_handling_policy.cc',
803 'public/common/webrtc_ip_handling_policy.h', 813 'public/common/webrtc_ip_handling_policy.h',
804 ], 814 ],
805 }], 815 }],
806 ['use_v4lplugin==1 and chromeos==1', { 816 ['use_v4lplugin==1 and chromeos==1', {
807 'defines': [ 817 'defines': [
808 'USE_LIBV4L2' 818 'USE_LIBV4L2'
809 ], 819 ],
810 'variables': { 820 'variables': {
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
1085 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1095 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1086 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc', 1096 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc',
1087 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h', 1097 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h',
1088 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1098 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1089 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc', 1099 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc',
1090 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.h', 1100 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.h',
1091 ], 1101 ],
1092 }], 1102 }],
1093 ], 1103 ],
1094 } 1104 }
OLDNEW
« no previous file with comments | « content/content.gyp ('k') | content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698