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 1806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1817 }], # OS=="android" | 1817 }], # OS=="android" |
1818 ['embedded==1', { | 1818 ['embedded==1', { |
1819 'use_system_fontconfig%': 0, | 1819 'use_system_fontconfig%': 0, |
1820 }, { | 1820 }, { |
1821 'use_system_fontconfig%': 1, | 1821 'use_system_fontconfig%': 1, |
1822 }], | 1822 }], |
1823 ['chromecast==1', { | 1823 ['chromecast==1', { |
1824 'enable_mpeg2ts_stream_parser%': 1, | 1824 'enable_mpeg2ts_stream_parser%': 1, |
1825 'ffmpeg_branding%': 'Chrome', | 1825 'ffmpeg_branding%': 'Chrome', |
1826 'ozone_platform_ozonex%': 1, | 1826 'ozone_platform_ozonex%': 1, |
| 1827 'use_playready%': 0, |
1827 'conditions': [ | 1828 'conditions': [ |
1828 ['target_arch=="arm"', { | 1829 ['target_arch=="arm"', { |
1829 'arm_arch%': '', | 1830 'arm_arch%': '', |
1830 'arm_tune%': 'cortex-a9', | 1831 'arm_tune%': 'cortex-a9', |
1831 'arm_thumb%': 1, | 1832 'arm_thumb%': 1, |
1832 'video_hole%': 1, | 1833 'video_hole%': 1, |
1833 }], | 1834 }], |
1834 ], | 1835 ], |
1835 }], | 1836 }], |
1836 ['android_webview_build==1', { | 1837 ['android_webview_build==1', { |
(...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2813 'conditions': [ | 2814 'conditions': [ |
2814 ['target_arch=="arm"', { | 2815 ['target_arch=="arm"', { |
2815 'defines': [ | 2816 'defines': [ |
2816 # TODO(lcwu): Work around an error when building Chromium | 2817 # TODO(lcwu): Work around an error when building Chromium |
2817 # with gcc-4.5.3 (e.g. v8/src/platform-linux.cc). Remove | 2818 # with gcc-4.5.3 (e.g. v8/src/platform-linux.cc). Remove |
2818 # this define once the toolchain is updated. | 2819 # this define once the toolchain is updated. |
2819 # See crbug.com/388933. | 2820 # See crbug.com/388933. |
2820 '__SOFTFP', | 2821 '__SOFTFP', |
2821 ], | 2822 ], |
2822 }], | 2823 }], |
| 2824 ['use_playready==1', { |
| 2825 'defines': [ |
| 2826 'PLAYREADY_CDM_AVAILABLE', |
| 2827 ], |
| 2828 }], |
2823 ], | 2829 ], |
2824 }], | 2830 }], |
2825 ['enable_task_manager==1', { | 2831 ['enable_task_manager==1', { |
2826 'defines': [ | 2832 'defines': [ |
2827 'ENABLE_TASK_MANAGER=1', | 2833 'ENABLE_TASK_MANAGER=1', |
2828 ], | 2834 ], |
2829 }], | 2835 }], |
2830 ['enable_extensions==1', { | 2836 ['enable_extensions==1', { |
2831 'defines': [ | 2837 'defines': [ |
2832 'ENABLE_EXTENSIONS=1', | 2838 'ENABLE_EXTENSIONS=1', |
(...skipping 2959 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5792 # settings in target dicts. SYMROOT is a special case, because many other | 5798 # settings in target dicts. SYMROOT is a special case, because many other |
5793 # Xcode variables depend on it, including variables such as | 5799 # Xcode variables depend on it, including variables such as |
5794 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5800 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5795 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5801 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5796 # files to appear (when present) in the UI as actual files and not red | 5802 # files to appear (when present) in the UI as actual files and not red |
5797 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5803 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5798 # and therefore SYMROOT, needs to be set at the project level. | 5804 # and therefore SYMROOT, needs to be set at the project level. |
5799 'SYMROOT': '<(DEPTH)/xcodebuild', | 5805 'SYMROOT': '<(DEPTH)/xcodebuild', |
5800 }, | 5806 }, |
5801 } | 5807 } |
OLD | NEW |