| 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 1956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1967 }, { | 1967 }, { |
| 1968 'use_cups%': 0, | 1968 'use_cups%': 0, |
| 1969 }], | 1969 }], |
| 1970 | 1970 |
| 1971 ['enable_plugins==1 and (OS=="linux" or OS=="mac" or OS=="win")', { | 1971 ['enable_plugins==1 and (OS=="linux" or OS=="mac" or OS=="win")', { |
| 1972 'enable_pepper_cdms%': 1, | 1972 'enable_pepper_cdms%': 1, |
| 1973 }, { | 1973 }, { |
| 1974 'enable_pepper_cdms%': 0, | 1974 'enable_pepper_cdms%': 0, |
| 1975 }], | 1975 }], |
| 1976 | 1976 |
| 1977 ['OS=="android"', { | 1977 ['OS=="android" or chromecast==1', { |
| 1978 'enable_browser_cdms%': 1, | 1978 'enable_browser_cdms%': 1, |
| 1979 }, { | 1979 }, { |
| 1980 'enable_browser_cdms%': 0, | 1980 'enable_browser_cdms%': 0, |
| 1981 }], | 1981 }], |
| 1982 | 1982 |
| 1983 # Native Client glibc toolchain is enabled | 1983 # Native Client glibc toolchain is enabled |
| 1984 # by default except on arm, mips and mips64. | 1984 # by default except on arm, mips and mips64. |
| 1985 ['target_arch=="arm" or target_arch=="mipsel" or target_arch=="mips64el"',
{ | 1985 ['target_arch=="arm" or target_arch=="mipsel" or target_arch=="mips64el"',
{ |
| 1986 'disable_glibc%': 1, | 1986 'disable_glibc%': 1, |
| 1987 }, { | 1987 }, { |
| (...skipping 3849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5837 # settings in target dicts. SYMROOT is a special case, because many other | 5837 # settings in target dicts. SYMROOT is a special case, because many other |
| 5838 # Xcode variables depend on it, including variables such as | 5838 # Xcode variables depend on it, including variables such as |
| 5839 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5839 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5840 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5840 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5841 # files to appear (when present) in the UI as actual files and not red | 5841 # files to appear (when present) in the UI as actual files and not red |
| 5842 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5842 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5843 # and therefore SYMROOT, needs to be set at the project level. | 5843 # and therefore SYMROOT, needs to be set at the project level. |
| 5844 'SYMROOT': '<(DEPTH)/xcodebuild', | 5844 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5845 }, | 5845 }, |
| 5846 } | 5846 } |
| OLD | NEW |