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

Side by Side Diff: build/common.gypi

Issue 216423008: Adds GYP variable to enable MPEG2TS stream parsing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Better flag description Created 6 years, 9 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 | media/media.gyp » ('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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 1331 matching lines...) Expand 10 before | Expand all | Expand 10 after
1342 # IPC fuzzer is disabled by default. 1342 # IPC fuzzer is disabled by default.
1343 'enable_ipc_fuzzer%': 0, 1343 'enable_ipc_fuzzer%': 0,
1344 1344
1345 1345
1346 # Force disable libstdc++ debug mode. 1346 # Force disable libstdc++ debug mode.
1347 'disable_glibcxx_debug%': 0, 1347 'disable_glibcxx_debug%': 0,
1348 1348
1349 # Set to 1 to compile with the hole punching for the protected video. 1349 # Set to 1 to compile with the hole punching for the protected video.
1350 'video_hole%': 0, 1350 'video_hole%': 0,
1351 1351
1352 # Set to 1 to compile with MSE support for MPEG2 TS
1353 'enable_mpeg2ts_stream_parser%': 0,
1354
1352 'conditions': [ 1355 'conditions': [
1353 # Enable the Syzygy optimization step for the official builds. 1356 # Enable the Syzygy optimization step for the official builds.
1354 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { 1357 ['OS=="win" and buildtype=="Official" and syzyasan!=1', {
1355 'syzygy_optimize%': 1, 1358 'syzygy_optimize%': 1,
1356 }, { 1359 }, {
1357 'syzygy_optimize%': 0, 1360 'syzygy_optimize%': 0,
1358 }], 1361 }],
1359 1362
1360 # The version of GCC in use, set later in platforms that use GCC and have 1363 # The version of GCC in use, set later in platforms that use GCC and have
1361 # not explicitly chosen to build with clang. Currently, this means all 1364 # not explicitly chosen to build with clang. Currently, this means all
(...skipping 3847 matching lines...) Expand 10 before | Expand all | Expand 10 after
5209 # settings in target dicts. SYMROOT is a special case, because many other 5212 # settings in target dicts. SYMROOT is a special case, because many other
5210 # Xcode variables depend on it, including variables such as 5213 # Xcode variables depend on it, including variables such as
5211 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5214 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5212 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5215 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5213 # files to appear (when present) in the UI as actual files and not red 5216 # files to appear (when present) in the UI as actual files and not red
5214 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5217 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5215 # and therefore SYMROOT, needs to be set at the project level. 5218 # and therefore SYMROOT, needs to be set at the project level.
5216 'SYMROOT': '<(DEPTH)/xcodebuild', 5219 'SYMROOT': '<(DEPTH)/xcodebuild',
5217 }, 5220 },
5218 } 5221 }
OLDNEW
« no previous file with comments | « no previous file | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698