| 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 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1098 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', | 1098 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', |
| 1099 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', | 1099 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', |
| 1100 | 1100 |
| 1101 # Whether we are using the rlz library or not. Platforms like Android send | 1101 # Whether we are using the rlz library or not. Platforms like Android send |
| 1102 # rlz codes for searches but do not use the library. | 1102 # rlz codes for searches but do not use the library. |
| 1103 'enable_rlz%': 0, | 1103 'enable_rlz%': 0, |
| 1104 | 1104 |
| 1105 # Turns on compiler optimizations in V8 in Debug build. | 1105 # Turns on compiler optimizations in V8 in Debug build. |
| 1106 'v8_optimized_debug': 1, | 1106 'v8_optimized_debug': 1, |
| 1107 | 1107 |
| 1108 # Turns on the i18n support in V8. |
| 1109 'v8_enable_i18n_support': 1, |
| 1110 |
| 1108 'conditions': [ | 1111 'conditions': [ |
| 1109 # The version of GCC in use, set later in platforms that use GCC and have | 1112 # The version of GCC in use, set later in platforms that use GCC and have |
| 1110 # not explicitly chosen to build with clang. Currently, this means all | 1113 # not explicitly chosen to build with clang. Currently, this means all |
| 1111 # platforms except Windows, Mac and iOS. | 1114 # platforms except Windows, Mac and iOS. |
| 1112 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that | 1115 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that |
| 1113 # it takes effect here. | 1116 # it takes effect here. |
| 1114 ['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', { | 1117 ['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', { |
| 1115 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', | 1118 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', |
| 1116 }, { | 1119 }, { |
| 1117 'gcc_version%': 0, | 1120 'gcc_version%': 0, |
| (...skipping 3520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4638 # settings in target dicts. SYMROOT is a special case, because many other | 4641 # settings in target dicts. SYMROOT is a special case, because many other |
| 4639 # Xcode variables depend on it, including variables such as | 4642 # Xcode variables depend on it, including variables such as |
| 4640 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4643 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4641 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4644 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4642 # files to appear (when present) in the UI as actual files and not red | 4645 # files to appear (when present) in the UI as actual files and not red |
| 4643 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4646 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4644 # and therefore SYMROOT, needs to be set at the project level. | 4647 # and therefore SYMROOT, needs to be set at the project level. |
| 4645 'SYMROOT': '<(DEPTH)/xcodebuild', | 4648 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4646 }, | 4649 }, |
| 4647 } | 4650 } |
| OLD | NEW |