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 2038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2049 }, { | 2049 }, { |
2050 'enable_pepper_cdms%': 0, | 2050 'enable_pepper_cdms%': 0, |
2051 }], | 2051 }], |
2052 | 2052 |
2053 ['OS=="android" or chromecast==1', { | 2053 ['OS=="android" or chromecast==1', { |
2054 'enable_browser_cdms%': 1, | 2054 'enable_browser_cdms%': 1, |
2055 }, { | 2055 }, { |
2056 'enable_browser_cdms%': 0, | 2056 'enable_browser_cdms%': 0, |
2057 }], | 2057 }], |
2058 | 2058 |
2059 # Native Client glibc toolchain is enabled | 2059 # Native Client glibc toolchain is enabled except on mips |
2060 # by default except on arm, mips and mips64. | 2060 ['target_arch=="mipsel" or target_arch=="mips64el"', { |
2061 ['target_arch=="arm" or target_arch=="mipsel" or target_arch=="mips64el"',
{ | |
2062 'disable_glibc%': 1, | 2061 'disable_glibc%': 1, |
2063 }, { | 2062 }, { |
2064 'disable_glibc%': 0, | 2063 'disable_glibc%': 0, |
2065 }], | 2064 }], |
2066 | 2065 |
2067 # Set the relative path from this file to the GYP file of the JPEG | 2066 # Set the relative path from this file to the GYP file of the JPEG |
2068 # library used by Chromium. | 2067 # library used by Chromium. |
2069 ['use_system_libjpeg==1 or use_libjpeg_turbo==0', { | 2068 ['use_system_libjpeg==1 or use_libjpeg_turbo==0', { |
2070 # Configuration for using the system libjeg is here. | 2069 # Configuration for using the system libjeg is here. |
2071 'libjpeg_gyp_path': '<(libjpeg_ijg_gyp_path)', | 2070 'libjpeg_gyp_path': '<(libjpeg_ijg_gyp_path)', |
(...skipping 4301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6373 # settings in target dicts. SYMROOT is a special case, because many other | 6372 # settings in target dicts. SYMROOT is a special case, because many other |
6374 # Xcode variables depend on it, including variables such as | 6373 # Xcode variables depend on it, including variables such as |
6375 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6374 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6376 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6375 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6377 # files to appear (when present) in the UI as actual files and not red | 6376 # files to appear (when present) in the UI as actual files and not red |
6378 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6377 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6379 # and therefore SYMROOT, needs to be set at the project level. | 6378 # and therefore SYMROOT, needs to be set at the project level. |
6380 'SYMROOT': '<(DEPTH)/xcodebuild', | 6379 'SYMROOT': '<(DEPTH)/xcodebuild', |
6381 }, | 6380 }, |
6382 } | 6381 } |
OLD | NEW |