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

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: Rebase to ToT 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 1813 matching lines...) Expand 10 before | Expand all | Expand 10 after
1824 'ozone_platform_ozonex%': 1, 1824 'ozone_platform_ozonex%': 1,
1825 'use_playready%': 0, 1825 'use_playready%': 0,
1826 'conditions': [ 1826 'conditions': [
1827 ['target_arch=="arm"', { 1827 ['target_arch=="arm"', {
1828 'arm_arch%': '', 1828 'arm_arch%': '',
1829 'arm_tune%': 'cortex-a9', 1829 'arm_tune%': 'cortex-a9',
1830 'arm_thumb%': 1, 1830 'arm_thumb%': 1,
1831 'video_hole%': 1, 1831 'video_hole%': 1,
1832 }], 1832 }],
1833 ], 1833 ],
1834 # Enable HEVC/H265 demuxing. Actual decoding must be provided by the
ddorwin 2015/06/19 21:40:14 wolenetz and I were talking, and this should proba
servolk 2015/06/20 00:05:07 Note that this define is added inside chromecast=1
ddorwin 2015/06/20 00:28:20 The point is that enable_hevc should not be set wh
1835 # platform.
1836 'defines': ['ENABLE_HEVC_DEMUXING'],
ddorwin 2015/06/19 21:40:14 I'm not sure that defining global defines like thi
1834 }], 1837 }],
1835 ['chromecast==1 and OS!="android"', { 1838 ['chromecast==1 and OS!="android"', {
1836 'ozone_platform_cast%': 1 1839 'ozone_platform_cast%': 1
1837 }], 1840 }],
1838 ['OS=="linux" and target_arch!="mipsel"', { 1841 ['OS=="linux" and target_arch!="mipsel"', {
1839 'clang%': 1, 1842 'clang%': 1,
1840 }], # OS=="mac" 1843 }], # OS=="mac"
1841 ['OS=="mac"', { 1844 ['OS=="mac"', {
1842 'conditions': [ 1845 'conditions': [
1843 # All Chrome builds have breakpad symbols, but only process the 1846 # All Chrome builds have breakpad symbols, but only process the
(...skipping 4355 matching lines...) Expand 10 before | Expand all | Expand 10 after
6199 # settings in target dicts. SYMROOT is a special case, because many other 6202 # settings in target dicts. SYMROOT is a special case, because many other
6200 # Xcode variables depend on it, including variables such as 6203 # Xcode variables depend on it, including variables such as
6201 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6204 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6202 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6205 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6203 # files to appear (when present) in the UI as actual files and not red 6206 # files to appear (when present) in the UI as actual files and not red
6204 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6207 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6205 # and therefore SYMROOT, needs to be set at the project level. 6208 # and therefore SYMROOT, needs to be set at the project level.
6206 'SYMROOT': '<(DEPTH)/xcodebuild', 6209 'SYMROOT': '<(DEPTH)/xcodebuild',
6207 }, 6210 },
6208 } 6211 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698