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 1498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1509 'enable_mpeg2ts_stream_parser%': 0, | 1509 'enable_mpeg2ts_stream_parser%': 0, |
1510 | 1510 |
1511 # Support ChromeOS touchpad gestures with ozone. | 1511 # Support ChromeOS touchpad gestures with ozone. |
1512 'use_evdev_gestures%': 0, | 1512 'use_evdev_gestures%': 0, |
1513 | 1513 |
1514 # Default ozone platform (if no --ozone-platform flag). | 1514 # Default ozone platform (if no --ozone-platform flag). |
1515 'ozone_platform%': "", | 1515 'ozone_platform%': "", |
1516 | 1516 |
1517 # Ozone platforms to include in the build. | 1517 # Ozone platforms to include in the build. |
1518 'ozone_platform_caca%': 0, | 1518 'ozone_platform_caca%': 0, |
| 1519 'ozone_platform_cast%': 0, |
1519 'ozone_platform_dri%': 0, | 1520 'ozone_platform_dri%': 0, |
1520 'ozone_platform_drm%': 0, | 1521 'ozone_platform_drm%': 0, |
1521 'ozone_platform_egltest%': 0, | 1522 'ozone_platform_egltest%': 0, |
1522 'ozone_platform_gbm%': 0, | 1523 'ozone_platform_gbm%': 0, |
1523 'ozone_platform_ozonex%': 0, | 1524 'ozone_platform_ozonex%': 0, |
1524 'ozone_platform_test%': 0, | 1525 'ozone_platform_test%': 0, |
1525 | 1526 |
1526 # Experiment: http://crbug.com/426914 | 1527 # Experiment: http://crbug.com/426914 |
1527 'envoy%': 0, | 1528 'envoy%': 0, |
1528 | 1529 |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1843 'use_playready%': 0, | 1844 'use_playready%': 0, |
1844 'conditions': [ | 1845 'conditions': [ |
1845 ['target_arch=="arm"', { | 1846 ['target_arch=="arm"', { |
1846 'arm_arch%': '', | 1847 'arm_arch%': '', |
1847 'arm_tune%': 'cortex-a9', | 1848 'arm_tune%': 'cortex-a9', |
1848 'arm_thumb%': 1, | 1849 'arm_thumb%': 1, |
1849 'video_hole%': 1, | 1850 'video_hole%': 1, |
1850 }], | 1851 }], |
1851 ], | 1852 ], |
1852 }], | 1853 }], |
| 1854 ['chromecast==1 and OS!="android"', { |
| 1855 'ozone_platform_cast%': 1 |
| 1856 }], |
1853 ['OS=="linux" and target_arch!="mipsel"', { | 1857 ['OS=="linux" and target_arch!="mipsel"', { |
1854 'clang%': 1, | 1858 'clang%': 1, |
1855 }], # OS=="mac" | 1859 }], # OS=="mac" |
1856 ['OS=="mac"', { | 1860 ['OS=="mac"', { |
1857 'conditions': [ | 1861 'conditions': [ |
1858 # All Chrome builds have breakpad symbols, but only process the | 1862 # All Chrome builds have breakpad symbols, but only process the |
1859 # symbols from official builds. | 1863 # symbols from official builds. |
1860 ['(branding=="Chrome" and buildtype=="Official")', { | 1864 ['(branding=="Chrome" and buildtype=="Official")', { |
1861 'mac_strip_release%': 1, | 1865 'mac_strip_release%': 1, |
1862 }], | 1866 }], |
(...skipping 4228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6091 # settings in target dicts. SYMROOT is a special case, because many other | 6095 # settings in target dicts. SYMROOT is a special case, because many other |
6092 # Xcode variables depend on it, including variables such as | 6096 # Xcode variables depend on it, including variables such as |
6093 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6097 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6094 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6098 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6095 # files to appear (when present) in the UI as actual files and not red | 6099 # files to appear (when present) in the UI as actual files and not red |
6096 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6100 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6097 # and therefore SYMROOT, needs to be set at the project level. | 6101 # and therefore SYMROOT, needs to be set at the project level. |
6098 'SYMROOT': '<(DEPTH)/xcodebuild', | 6102 'SYMROOT': '<(DEPTH)/xcodebuild', |
6099 }, | 6103 }, |
6100 } | 6104 } |
OLD | NEW |