| 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 1864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1875 | 1875 |
| 1876 'gtest_target_type%': 'shared_library', | 1876 'gtest_target_type%': 'shared_library', |
| 1877 }], # OS=="android" | 1877 }], # OS=="android" |
| 1878 ['embedded==1', { | 1878 ['embedded==1', { |
| 1879 'use_system_fontconfig%': 0, | 1879 'use_system_fontconfig%': 0, |
| 1880 }, { | 1880 }, { |
| 1881 'use_system_fontconfig%': 1, | 1881 'use_system_fontconfig%': 1, |
| 1882 }], | 1882 }], |
| 1883 ['chromecast==1', { | 1883 ['chromecast==1', { |
| 1884 'enable_mpeg2ts_stream_parser%': 1, | 1884 'enable_mpeg2ts_stream_parser%': 1, |
| 1885 'ffmpeg_branding%': 'ChromeOS', | |
| 1886 'use_custom_freetype%': 0, | 1885 'use_custom_freetype%': 0, |
| 1887 'use_playready%': 0, | 1886 'use_playready%': 0, |
| 1888 'conditions': [ | 1887 'conditions': [ |
| 1889 ['target_arch=="arm"', { | 1888 ['target_arch=="arm"', { |
| 1890 'arm_arch%': '', | 1889 'arm_arch%': '', |
| 1891 'arm_tune%': 'cortex-a9', | 1890 'arm_tune%': 'cortex-a9', |
| 1892 'arm_thumb%': 1, | 1891 'arm_thumb%': 1, |
| 1893 }], | 1892 }], |
| 1893 # TODO(dalecurtis): What audio codecs does Chromecast want here? Sort |
| 1894 # out and add configs if necessary. http://crbug.com/570754 |
| 1895 ['OS!="android"', { |
| 1896 'ffmpeg_branding%': 'ChromeOS', |
| 1897 }], |
| 1894 ], | 1898 ], |
| 1895 }], | 1899 }], |
| 1896 ['OS=="linux"', { | 1900 ['OS=="linux"', { |
| 1897 'clang%': 1, | 1901 'clang%': 1, |
| 1898 }], # OS=="mac" | 1902 }], # OS=="mac" |
| 1899 ['OS=="mac"', { | 1903 ['OS=="mac"', { |
| 1900 'conditions': [ | 1904 'conditions': [ |
| 1901 # All Chrome builds have breakpad symbols, but only process the | 1905 # All Chrome builds have breakpad symbols, but only process the |
| 1902 # symbols from official builds. | 1906 # symbols from official builds. |
| 1903 ['(branding=="Chrome" and buildtype=="Official")', { | 1907 ['(branding=="Chrome" and buildtype=="Official")', { |
| (...skipping 4513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6417 # settings in target dicts. SYMROOT is a special case, because many other | 6421 # settings in target dicts. SYMROOT is a special case, because many other |
| 6418 # Xcode variables depend on it, including variables such as | 6422 # Xcode variables depend on it, including variables such as |
| 6419 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6423 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6420 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6424 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6421 # files to appear (when present) in the UI as actual files and not red | 6425 # files to appear (when present) in the UI as actual files and not red |
| 6422 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6426 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6423 # and therefore SYMROOT, needs to be set at the project level. | 6427 # and therefore SYMROOT, needs to be set at the project level. |
| 6424 'SYMROOT': '<(DEPTH)/xcodebuild', | 6428 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6425 }, | 6429 }, |
| 6426 } | 6430 } |
| OLD | NEW |