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 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1147 # Whether we are using the rlz library or not. Platforms like Android send | 1147 # Whether we are using the rlz library or not. Platforms like Android send |
1148 # rlz codes for searches but do not use the library. | 1148 # rlz codes for searches but do not use the library. |
1149 'enable_rlz%': 0, | 1149 'enable_rlz%': 0, |
1150 | 1150 |
1151 # Turns on the i18n support in V8. | 1151 # Turns on the i18n support in V8. |
1152 'v8_enable_i18n_support': 1, | 1152 'v8_enable_i18n_support': 1, |
1153 | 1153 |
1154 # Use the chromium skia by default. | 1154 # Use the chromium skia by default. |
1155 'use_system_skia%': '0', | 1155 'use_system_skia%': '0', |
1156 | 1156 |
| 1157 # Use brlapi from brltty for braille display support. |
| 1158 'use_brlapi%': 0, |
| 1159 |
1157 'conditions': [ | 1160 'conditions': [ |
1158 # The version of GCC in use, set later in platforms that use GCC and have | 1161 # The version of GCC in use, set later in platforms that use GCC and have |
1159 # not explicitly chosen to build with clang. Currently, this means all | 1162 # not explicitly chosen to build with clang. Currently, this means all |
1160 # platforms except Windows, Mac and iOS. | 1163 # platforms except Windows, Mac and iOS. |
1161 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that | 1164 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that |
1162 # it takes effect here. | 1165 # it takes effect here. |
1163 ['os_posix==1 and OS!="mac" and OS!="ios" and clang==0 and asan==0 and lsa
n==0 and tsan==0 and msan==0', { | 1166 ['os_posix==1 and OS!="mac" and OS!="ios" and clang==0 and asan==0 and lsa
n==0 and tsan==0 and msan==0', { |
1164 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', | 1167 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', |
1165 }, { | 1168 }, { |
1166 'gcc_version%': 0, | 1169 'gcc_version%': 0, |
(...skipping 3558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4725 # settings in target dicts. SYMROOT is a special case, because many other | 4728 # settings in target dicts. SYMROOT is a special case, because many other |
4726 # Xcode variables depend on it, including variables such as | 4729 # Xcode variables depend on it, including variables such as |
4727 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4730 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4728 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4731 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4729 # files to appear (when present) in the UI as actual files and not red | 4732 # files to appear (when present) in the UI as actual files and not red |
4730 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4733 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4731 # and therefore SYMROOT, needs to be set at the project level. | 4734 # and therefore SYMROOT, needs to be set at the project level. |
4732 'SYMROOT': '<(DEPTH)/xcodebuild', | 4735 'SYMROOT': '<(DEPTH)/xcodebuild', |
4733 }, | 4736 }, |
4734 } | 4737 } |
OLD | NEW |