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

Side by Side Diff: webrtc/build/common.gypi

Issue 1648763002: Create QuicSession (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Improve unit tests 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 | « no previous file | webrtc/p2p/p2p.gyp » ('j') | webrtc/p2p/quic/quicconnectionhelper.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 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 # This file contains common settings for building WebRTC components. 9 # This file contains common settings for building WebRTC components.
10 10
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 139
140 # Enable this to build OpenH264 encoder/FFmpeg decoder. This is supported on 140 # Enable this to build OpenH264 encoder/FFmpeg decoder. This is supported on
141 # all platforms except iOS. Because FFmpeg can be built with/without H.264 141 # all platforms except iOS. Because FFmpeg can be built with/without H.264
142 # support, |ffmpeg_branding| has to separately be set to a value that 142 # support, |ffmpeg_branding| has to separately be set to a value that
143 # includes H.264, for example "Chrome". If FFmpeg is built without H.264, 143 # includes H.264, for example "Chrome". If FFmpeg is built without H.264,
144 # compilation succeeds but |H264DecoderImpl| fails to initialize. 144 # compilation succeeds but |H264DecoderImpl| fails to initialize.
145 # CHECK THE OPENH264, FFMPEG AND H.264 LICENSES/PATENTS BEFORE BUILDING. 145 # CHECK THE OPENH264, FFMPEG AND H.264 LICENSES/PATENTS BEFORE BUILDING.
146 # http://www.openh264.org, https://www.ffmpeg.org/ 146 # http://www.openh264.org, https://www.ffmpeg.org/
147 'rtc_use_h264%': 0, # TODO(hbos): enc/dec in follow up CL(s). 147 'rtc_use_h264%': 0, # TODO(hbos): enc/dec in follow up CL(s).
148 148
149 # Determines whether QUIC code will be built.
150 'use_quic%': 0,
151
149 'conditions': [ 152 'conditions': [
150 ['build_with_chromium==1', { 153 ['build_with_chromium==1', {
151 # Exclude pulse audio on Chromium since its prerequisites don't require 154 # Exclude pulse audio on Chromium since its prerequisites don't require
152 # pulse audio. 155 # pulse audio.
153 'include_pulse_audio%': 0, 156 'include_pulse_audio%': 0,
154 157
155 # Exclude internal ADM since Chromium uses its own IO handling. 158 # Exclude internal ADM since Chromium uses its own IO handling.
156 'include_internal_audio_device%': 0, 159 'include_internal_audio_device%': 0,
157 160
158 # Remove tests for Chromium to avoid slowing down GYP generation. 161 # Remove tests for Chromium to avoid slowing down GYP generation.
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 # of a more specific macro. 465 # of a more specific macro.
463 'defines': [ 466 'defines': [
464 'WEBRTC_POSIX', 467 'WEBRTC_POSIX',
465 ], 468 ],
466 }], 469 }],
467 ], 470 ],
468 }, 471 },
469 }, # target_defaults 472 }, # target_defaults
470 } 473 }
471 474
OLDNEW
« no previous file with comments | « no previous file | webrtc/p2p/p2p.gyp » ('j') | webrtc/p2p/quic/quicconnectionhelper.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698