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

Side by Side Diff: build/common.gypi

Issue 812643005: Re-add AC3/EAC3 audio demuxing support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed unit tests Created 5 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
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 1455 matching lines...) Expand 10 before | Expand all | Expand 10 after
1466 1466
1467 # Relative path to icu.gyp from this file. 1467 # Relative path to icu.gyp from this file.
1468 'icu_gyp_path': '../third_party/icu/icu.gyp', 1468 'icu_gyp_path': '../third_party/icu/icu.gyp',
1469 1469
1470 # IPC fuzzer is disabled by default. 1470 # IPC fuzzer is disabled by default.
1471 'enable_ipc_fuzzer%': 0, 1471 'enable_ipc_fuzzer%': 0,
1472 1472
1473 # Force disable libstdc++ debug mode. 1473 # Force disable libstdc++ debug mode.
1474 'disable_glibcxx_debug%': 0, 1474 'disable_glibcxx_debug%': 0,
1475 1475
1476 # Set to 1 to enable AC3/EAC3 audio demuxing
1477 'enable_ac3_eac3_audio_demuxing%': 0,
1478
1476 # Set to 1 to compile with MSE support for MPEG2 TS 1479 # Set to 1 to compile with MSE support for MPEG2 TS
1477 'enable_mpeg2ts_stream_parser%': 0, 1480 'enable_mpeg2ts_stream_parser%': 0,
1478 1481
1479 # Support ChromeOS touchpad gestures with ozone. 1482 # Support ChromeOS touchpad gestures with ozone.
1480 'use_evdev_gestures%': 0, 1483 'use_evdev_gestures%': 0,
1481 1484
1482 # Default ozone platform (if no --ozone-platform flag). 1485 # Default ozone platform (if no --ozone-platform flag).
1483 'ozone_platform%': "", 1486 'ozone_platform%': "",
1484 1487
1485 # Ozone platforms to include in the build. 1488 # Ozone platforms to include in the build.
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
1802 1805
1803 # Copy it out one scope. 1806 # Copy it out one scope.
1804 'android_webview_build%': '<(android_webview_build)', 1807 'android_webview_build%': '<(android_webview_build)',
1805 }], # OS=="android" 1808 }], # OS=="android"
1806 ['embedded==1', { 1809 ['embedded==1', {
1807 'use_system_fontconfig%': 0, 1810 'use_system_fontconfig%': 0,
1808 }, { 1811 }, {
1809 'use_system_fontconfig%': 1, 1812 'use_system_fontconfig%': 1,
1810 }], 1813 }],
1811 ['chromecast==1', { 1814 ['chromecast==1', {
1815 'enable_ac3_eac3_audio_demuxing%': 1,
1812 'enable_mpeg2ts_stream_parser%': 1, 1816 'enable_mpeg2ts_stream_parser%': 1,
1813 'ffmpeg_branding%': 'ChromeOS', 1817 'ffmpeg_branding%': 'ChromeOS',
1814 'ozone_platform_ozonex%': 1, 1818 'ozone_platform_ozonex%': 1,
1815 'use_playready%': 0, 1819 'use_playready%': 0,
1816 'conditions': [ 1820 'conditions': [
1817 ['target_arch=="arm"', { 1821 ['target_arch=="arm"', {
1818 'arm_arch%': '', 1822 'arm_arch%': '',
1819 'arm_tune%': 'cortex-a9', 1823 'arm_tune%': 'cortex-a9',
1820 'arm_thumb%': 1, 1824 'arm_thumb%': 1,
1821 'video_hole%': 1, 1825 'video_hole%': 1,
(...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after
2649 }], 2653 }],
2650 ['enable_webrtc==1', { 2654 ['enable_webrtc==1', {
2651 'defines': ['ENABLE_WEBRTC=1'], 2655 'defines': ['ENABLE_WEBRTC=1'],
2652 }], 2656 }],
2653 ['proprietary_codecs==1', { 2657 ['proprietary_codecs==1', {
2654 'defines': ['USE_PROPRIETARY_CODECS'], 2658 'defines': ['USE_PROPRIETARY_CODECS'],
2655 'conditions': [ 2659 'conditions': [
2656 ['enable_mpeg2ts_stream_parser==1', { 2660 ['enable_mpeg2ts_stream_parser==1', {
2657 'defines': ['ENABLE_MPEG2TS_STREAM_PARSER'], 2661 'defines': ['ENABLE_MPEG2TS_STREAM_PARSER'],
2658 }], 2662 }],
2663 ['enable_ac3_eac3_audio_demuxing==1', {
2664 'defines': ['ENABLE_AC3_EAC3_AUDIO_DEMUXING'],
2665 }],
2659 ], 2666 ],
2660 }], 2667 }],
2661 ['enable_viewport==1', { 2668 ['enable_viewport==1', {
2662 'defines': ['ENABLE_VIEWPORT'], 2669 'defines': ['ENABLE_VIEWPORT'],
2663 }], 2670 }],
2664 ['enable_pepper_cdms==1', { 2671 ['enable_pepper_cdms==1', {
2665 'defines': ['ENABLE_PEPPER_CDMS'], 2672 'defines': ['ENABLE_PEPPER_CDMS'],
2666 }], 2673 }],
2667 ['enable_browser_cdms==1', { 2674 ['enable_browser_cdms==1', {
2668 'defines': ['ENABLE_BROWSER_CDMS'], 2675 'defines': ['ENABLE_BROWSER_CDMS'],
(...skipping 3263 matching lines...) Expand 10 before | Expand all | Expand 10 after
5932 # settings in target dicts. SYMROOT is a special case, because many other 5939 # settings in target dicts. SYMROOT is a special case, because many other
5933 # Xcode variables depend on it, including variables such as 5940 # Xcode variables depend on it, including variables such as
5934 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5941 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5935 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5942 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5936 # files to appear (when present) in the UI as actual files and not red 5943 # files to appear (when present) in the UI as actual files and not red
5937 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5944 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5938 # and therefore SYMROOT, needs to be set at the project level. 5945 # and therefore SYMROOT, needs to be set at the project level.
5939 'SYMROOT': '<(DEPTH)/xcodebuild', 5946 'SYMROOT': '<(DEPTH)/xcodebuild',
5940 }, 5947 },
5941 } 5948 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698