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

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: (Alphabetical sorting in common_video.gyp deps) 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 | « webrtc/common_video/video_frame.cc ('k') | webrtc/modules/video_coding/BUILD.gn » ('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) 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 ['rtc_use_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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 'sources': [ 587 'sources': [
580 'video_render_tests.isolate', 588 'video_render_tests.isolate',
581 ], 589 ],
582 }, 590 },
583 ], 591 ],
584 }], 592 }],
585 ], 593 ],
586 }], # include_tests 594 }], # include_tests
587 ], # conditions 595 ], # conditions
588 } 596 }
OLDNEW
« no previous file with comments | « webrtc/common_video/video_frame.cc ('k') | webrtc/modules/video_coding/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698