| 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 1844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1855 'p2p_apis%' : 0, | 1855 'p2p_apis%' : 0, |
| 1856 | 1856 |
| 1857 'gtest_target_type%': 'shared_library', | 1857 'gtest_target_type%': 'shared_library', |
| 1858 }], # OS=="android" | 1858 }], # OS=="android" |
| 1859 ['embedded==1', { | 1859 ['embedded==1', { |
| 1860 'use_system_fontconfig%': 0, | 1860 'use_system_fontconfig%': 0, |
| 1861 }, { | 1861 }, { |
| 1862 'use_system_fontconfig%': 1, | 1862 'use_system_fontconfig%': 1, |
| 1863 }], | 1863 }], |
| 1864 ['chromecast==1', { | 1864 ['chromecast==1', { |
| 1865 'use_custom_freetype%': 0, | |
| 1866 'use_playready%': 0, | 1865 'use_playready%': 0, |
| 1867 'conditions': [ | 1866 'conditions': [ |
| 1868 ['target_arch=="arm"', { | 1867 ['target_arch=="arm"', { |
| 1869 'arm_arch%': '', | 1868 'arm_arch%': '', |
| 1870 'arm_tune%': 'cortex-a9', | 1869 'arm_tune%': 'cortex-a9', |
| 1871 'arm_thumb%': 1, | 1870 'arm_thumb%': 1, |
| 1872 }], | 1871 }], |
| 1873 # TODO(dalecurtis): What audio codecs does Chromecast want here? Sort | 1872 # TODO(dalecurtis): What audio codecs does Chromecast want here? Sort |
| 1874 # out and add configs if necessary. http://crbug.com/570754 | 1873 # out and add configs if necessary. http://crbug.com/570754 |
| 1875 ['OS!="android"', { | 1874 ['OS!="android"', { |
| (...skipping 4490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6366 # settings in target dicts. SYMROOT is a special case, because many other | 6365 # settings in target dicts. SYMROOT is a special case, because many other |
| 6367 # Xcode variables depend on it, including variables such as | 6366 # Xcode variables depend on it, including variables such as |
| 6368 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6367 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6369 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6368 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6370 # files to appear (when present) in the UI as actual files and not red | 6369 # files to appear (when present) in the UI as actual files and not red |
| 6371 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6370 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6372 # and therefore SYMROOT, needs to be set at the project level. | 6371 # and therefore SYMROOT, needs to be set at the project level. |
| 6373 'SYMROOT': '<(DEPTH)/xcodebuild', | 6372 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6374 }, | 6373 }, |
| 6375 } | 6374 } |
| OLD | NEW |