Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 support for MPEG2TS streams | |
|
damienv1
2014/03/28 17:50:51
"with MSE support for MPEG2 TS" (it's not a wide s
| |
| 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 Loading... | |
| 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 } |
| OLD | NEW |