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

Side by Side Diff: build/common.gypi

Issue 816353010: Implemented HEVC video demuxing and parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add kCodecHEVC in media/base/android/demuxer_stream_player_params.cc Created 5 years, 6 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 1819 matching lines...) Expand 10 before | Expand all | Expand 10 after
1830 'use_custom_freetype%': 0, 1830 'use_custom_freetype%': 0,
1831 'use_playready%': 0, 1831 'use_playready%': 0,
1832 'conditions': [ 1832 'conditions': [
1833 ['target_arch=="arm"', { 1833 ['target_arch=="arm"', {
1834 'arm_arch%': '', 1834 'arm_arch%': '',
1835 'arm_tune%': 'cortex-a9', 1835 'arm_tune%': 'cortex-a9',
1836 'arm_thumb%': 1, 1836 'arm_thumb%': 1,
1837 'video_hole%': 1, 1837 'video_hole%': 1,
1838 }], 1838 }],
1839 ], 1839 ],
1840 # Enable HEVC/H265 demuxing. Actual decoding must be provided by the
1841 # platform.
1842 'defines': ['ENABLE_HEVC_DEMUXING'],
1840 }], 1843 }],
1841 ['chromecast==1 and OS!="android"', { 1844 ['chromecast==1 and OS!="android"', {
1842 'ozone_platform_cast%': 1 1845 'ozone_platform_cast%': 1
1843 }], 1846 }],
1844 ['OS=="linux" and target_arch!="mipsel"', { 1847 ['OS=="linux" and target_arch!="mipsel"', {
1845 'clang%': 1, 1848 'clang%': 1,
1846 }], # OS=="mac" 1849 }], # OS=="mac"
1847 ['OS=="mac"', { 1850 ['OS=="mac"', {
1848 'conditions': [ 1851 'conditions': [
1849 # All Chrome builds have breakpad symbols, but only process the 1852 # All Chrome builds have breakpad symbols, but only process the
(...skipping 4351 matching lines...) Expand 10 before | Expand all | Expand 10 after
6201 # settings in target dicts. SYMROOT is a special case, because many other 6204 # settings in target dicts. SYMROOT is a special case, because many other
6202 # Xcode variables depend on it, including variables such as 6205 # Xcode variables depend on it, including variables such as
6203 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6206 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6204 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6207 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6205 # files to appear (when present) in the UI as actual files and not red 6208 # files to appear (when present) in the UI as actual files and not red
6206 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6209 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6207 # and therefore SYMROOT, needs to be set at the project level. 6210 # and therefore SYMROOT, needs to be set at the project level.
6208 'SYMROOT': '<(DEPTH)/xcodebuild', 6211 'SYMROOT': '<(DEPTH)/xcodebuild',
6209 }, 6212 },
6210 } 6213 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/media/media_canplaytype_browsertest.cc » ('j') | media/base/mime_util.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698