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 1798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1809 | 1809 |
| 1810 'p2p_apis%' : 0, | 1810 'p2p_apis%' : 0, |
| 1811 | 1811 |
| 1812 'gtest_target_type%': 'shared_library', | 1812 'gtest_target_type%': 'shared_library', |
| 1813 }], # OS=="android" | 1813 }], # OS=="android" |
| 1814 ['embedded==1', { | 1814 ['embedded==1', { |
| 1815 'use_system_fontconfig%': 0, | 1815 'use_system_fontconfig%': 0, |
| 1816 }, { | 1816 }, { |
| 1817 'use_system_fontconfig%': 1, | 1817 'use_system_fontconfig%': 1, |
| 1818 }], | 1818 }], |
| 1819 ['chromecast==1 and OS=="linux"', { | |
| 1820 'use_custom_freetype%': 0, | |
|
gunsch
2015/06/19 23:32:46
No need for the OS=="linux" guard, you can just pu
| |
| 1821 }], | |
| 1819 ['chromecast==1', { | 1822 ['chromecast==1', { |
| 1820 'enable_mpeg2ts_stream_parser%': 1, | 1823 'enable_mpeg2ts_stream_parser%': 1, |
| 1821 'ffmpeg_branding%': 'ChromeOS', | 1824 'ffmpeg_branding%': 'ChromeOS', |
| 1822 'ozone_platform_ozonex%': 1, | 1825 'ozone_platform_ozonex%': 1, |
| 1823 'use_playready%': 0, | 1826 'use_playready%': 0, |
| 1824 'conditions': [ | 1827 'conditions': [ |
| 1825 ['target_arch=="arm"', { | 1828 ['target_arch=="arm"', { |
| 1826 'arm_arch%': '', | 1829 'arm_arch%': '', |
| 1827 'arm_tune%': 'cortex-a9', | 1830 'arm_tune%': 'cortex-a9', |
| 1828 'arm_thumb%': 1, | 1831 'arm_thumb%': 1, |
| (...skipping 4363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 6192 # settings in target dicts. SYMROOT is a special case, because many other | 6195 # settings in target dicts. SYMROOT is a special case, because many other |
| 6193 # Xcode variables depend on it, including variables such as | 6196 # Xcode variables depend on it, including variables such as |
| 6194 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6197 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6195 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6198 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6196 # files to appear (when present) in the UI as actual files and not red | 6199 # files to appear (when present) in the UI as actual files and not red |
| 6197 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6200 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6198 # and therefore SYMROOT, needs to be set at the project level. | 6201 # and therefore SYMROOT, needs to be set at the project level. |
| 6199 'SYMROOT': '<(DEPTH)/xcodebuild', | 6202 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6200 }, | 6203 }, |
| 6201 } | 6204 } |
| OLD | NEW |