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

Side by Side Diff: webrtc/modules/modules.gyp

Issue 1306813009: H.264 video codec support using OpenH264/FFmpeg (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Addressed noahric's comments + minor fixes Created 4 years, 11 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) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 27 matching lines...) Expand all
38 'video_coding/codecs/tools/video_codecs_tools.gypi', 38 'video_coding/codecs/tools/video_codecs_tools.gypi',
39 ], # includes 39 ], # includes
40 'variables': { 40 'variables': {
41 'conditions': [ 41 'conditions': [
42 # Desktop capturer is supported only on Windows, OSX and Linux. 42 # Desktop capturer is supported only on Windows, OSX and Linux.
43 ['OS=="win" or OS=="mac" or OS=="linux"', { 43 ['OS=="win" or OS=="mac" or OS=="linux"', {
44 'desktop_capture_supported%': 1, 44 'desktop_capture_supported%': 1,
45 }, { 45 }, {
46 'desktop_capture_supported%': 0, 46 'desktop_capture_supported%': 0,
47 }], 47 }],
48 ['use_third_party_h264==1', {
49 'videoprocessor_defines': [
50 'WEBRTC_VIDEOPROCESSOR_H264_TESTS',
51 ],
52 }, {
53 'videoprocessor_defines': [],
54 }],
48 ], 55 ],
49 }, 56 },
50 'targets': [ 57 'targets': [
51 { 58 {
52 'target_name': 'modules_tests', 59 'target_name': 'modules_tests',
53 'type': '<(gtest_target_type)', 60 'type': '<(gtest_target_type)',
54 'dependencies': [ 61 'dependencies': [
55 '<(DEPTH)/testing/gtest.gyp:gtest', 62 '<(DEPTH)/testing/gtest.gyp:gtest',
56 '<(webrtc_root)/common.gyp:webrtc_common', 63 '<(webrtc_root)/common.gyp:webrtc_common',
57 '<(webrtc_root)/common_video/common_video.gyp:common_video', 64 '<(webrtc_root)/common_video/common_video.gyp:common_video',
58 '<(webrtc_root)/modules/video_coding/codecs/vp8/vp8.gyp:webrtc_vp8', 65 '<(webrtc_root)/modules/video_coding/codecs/vp8/vp8.gyp:webrtc_vp8',
59 '<(webrtc_root)/modules/video_coding/codecs/vp9/vp9.gyp:webrtc_vp9', 66 '<(webrtc_root)/modules/video_coding/codecs/vp9/vp9.gyp:webrtc_vp9',
60 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' , 67 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' ,
61 '<(webrtc_root)/test/metrics.gyp:metrics', 68 '<(webrtc_root)/test/metrics.gyp:metrics',
62 '<(webrtc_root)/test/test.gyp:test_support', 69 '<(webrtc_root)/test/test.gyp:test_support',
63 '<(webrtc_root)/test/test.gyp:test_support_main', 70 '<(webrtc_root)/test/test.gyp:test_support_main',
64 'audio_coding_module', 71 'audio_coding_module',
65 'rtp_rtcp', 72 'rtp_rtcp',
66 'video_codecs_test_framework', 73 'video_codecs_test_framework',
67 'webrtc_utility', 74 'webrtc_utility',
68 'webrtc_video_coding', 75 'webrtc_video_coding',
69 ], 76 ],
70 'defines': [ 77 'defines': [
71 '<@(audio_coding_defines)', 78 '<@(audio_coding_defines)',
79 '<@(videoprocessor_defines)',
72 ], 80 ],
73 'sources': [ 81 'sources': [
74 'audio_coding/test/APITest.cc', 82 'audio_coding/test/APITest.cc',
75 'audio_coding/test/Channel.cc', 83 'audio_coding/test/Channel.cc',
76 'audio_coding/test/EncodeDecodeTest.cc', 84 'audio_coding/test/EncodeDecodeTest.cc',
77 'audio_coding/test/PCMFile.cc', 85 'audio_coding/test/PCMFile.cc',
78 'audio_coding/test/PacketLossTest.cc', 86 'audio_coding/test/PacketLossTest.cc',
79 'audio_coding/test/RTPFile.cc', 87 'audio_coding/test/RTPFile.cc',
80 'audio_coding/test/SpatialAudio.cc', 88 'audio_coding/test/SpatialAudio.cc',
81 'audio_coding/test/TestAllCodecs.cc', 89 'audio_coding/test/TestAllCodecs.cc',
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 'sources': [ 575 'sources': [
568 'video_render_tests.isolate', 576 'video_render_tests.isolate',
569 ], 577 ],
570 }, 578 },
571 ], 579 ],
572 }], 580 }],
573 ], 581 ],
574 }], # include_tests 582 }], # include_tests
575 ], # conditions 583 ], # conditions
576 } 584 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698