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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
942 'chrome_multiple_dll%': '0', | 942 'chrome_multiple_dll%': '0', |
943 | 943 |
944 # The default settings for third party code for treating | 944 # The default settings for third party code for treating |
945 # warnings-as-errors. Ideally, this would not be required, however there | 945 # warnings-as-errors. Ideally, this would not be required, however there |
946 # is some third party code that takes a long time to fix/roll. So, this | 946 # is some third party code that takes a long time to fix/roll. So, this |
947 # flag allows us to have warnings as errors in general to prevent | 947 # flag allows us to have warnings as errors in general to prevent |
948 # regressions in most modules, while working on the bits that are | 948 # regressions in most modules, while working on the bits that are |
949 # remaining. | 949 # remaining. |
950 'win_third_party_warn_as_error%': 'true', | 950 'win_third_party_warn_as_error%': 'true', |
951 | 951 |
| 952 # This is the location of the sandbox binary. Chrome looks for this before |
| 953 # running the zygote process. If found, and SUID, it will be used to |
| 954 # sandbox the zygote process and, thus, all renderer processes. |
| 955 'linux_sandbox_path%': '', |
| 956 |
952 # Clang stuff. | 957 # Clang stuff. |
953 'clang%': '<(clang)', | 958 'clang%': '<(clang)', |
954 'make_clang_dir%': 'third_party/llvm-build/Release+Asserts', | 959 'make_clang_dir%': 'third_party/llvm-build/Release+Asserts', |
955 | 960 |
956 # These two variables can be set in GYP_DEFINES while running | 961 # These two variables can be set in GYP_DEFINES while running |
957 # |gclient runhooks| to let clang run a plugin in every compilation. | 962 # |gclient runhooks| to let clang run a plugin in every compilation. |
958 # Only has an effect if 'clang=1' is in GYP_DEFINES as well. | 963 # Only has an effect if 'clang=1' is in GYP_DEFINES as well. |
959 # Example: | 964 # Example: |
960 # GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dyl
ib clang_add_plugin=print-fns' gclient runhooks | 965 # GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dyl
ib clang_add_plugin=print-fns' gclient runhooks |
961 | 966 |
(...skipping 3714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4676 # settings in target dicts. SYMROOT is a special case, because many other | 4681 # settings in target dicts. SYMROOT is a special case, because many other |
4677 # Xcode variables depend on it, including variables such as | 4682 # Xcode variables depend on it, including variables such as |
4678 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4683 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4679 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4684 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4680 # files to appear (when present) in the UI as actual files and not red | 4685 # files to appear (when present) in the UI as actual files and not red |
4681 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4686 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4682 # and therefore SYMROOT, needs to be set at the project level. | 4687 # and therefore SYMROOT, needs to be set at the project level. |
4683 'SYMROOT': '<(DEPTH)/xcodebuild', | 4688 'SYMROOT': '<(DEPTH)/xcodebuild', |
4684 }, | 4689 }, |
4685 } | 4690 } |
OLD | NEW |