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