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

Side by Side Diff: webrtc/webrtc_tests.gypi

Issue 1306813009: H.264 video codec support using OpenH264/FFmpeg (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase with master 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) 2013 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2013 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 '<(webrtc_root)/modules/modules.gyp:video_capture', 188 '<(webrtc_root)/modules/modules.gyp:video_capture',
189 '<(webrtc_root)/modules/modules.gyp:video_render', 189 '<(webrtc_root)/modules/modules.gyp:video_render',
190 '<(webrtc_root)/test/test.gyp:channel_transport', 190 '<(webrtc_root)/test/test.gyp:channel_transport',
191 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', 191 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
192 'test/metrics.gyp:metrics', 192 'test/metrics.gyp:metrics',
193 'test/test.gyp:test_main', 193 'test/test.gyp:test_main',
194 'test/webrtc_test_common.gyp:webrtc_test_common', 194 'test/webrtc_test_common.gyp:webrtc_test_common',
195 'webrtc', 195 'webrtc',
196 ], 196 ],
197 'conditions': [ 197 'conditions': [
198 ['use_third_party_h264==1', {
199 'defines': [
200 'WEBRTC_END_TO_END_H264_TESTS',
201 ],
202 }],
198 ['OS=="android"', { 203 ['OS=="android"', {
199 'dependencies': [ 204 'dependencies': [
200 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 205 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
201 ], 206 ],
202 }], 207 }],
203 ['enable_protobuf==1', { 208 ['enable_protobuf==1', {
204 'defines': [ 209 'defines': [
205 'ENABLE_RTC_EVENT_LOG', 210 'ENABLE_RTC_EVENT_LOG',
206 ], 211 ],
207 'dependencies': [ 212 'dependencies': [
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 'build/isolate.gypi', 392 'build/isolate.gypi',
388 ], 393 ],
389 'sources': [ 394 'sources': [
390 'webrtc_perf_tests.isolate', 395 'webrtc_perf_tests.isolate',
391 ], 396 ],
392 }, 397 },
393 ], 398 ],
394 }], 399 }],
395 ], 400 ],
396 } 401 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698