| 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 945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 956 'chrome_multiple_dll%': '0', | 956 'chrome_multiple_dll%': '0', |
| 957 | 957 |
| 958 # The default settings for third party code for treating | 958 # The default settings for third party code for treating |
| 959 # warnings-as-errors. Ideally, this would not be required, however there | 959 # warnings-as-errors. Ideally, this would not be required, however there |
| 960 # is some third party code that takes a long time to fix/roll. So, this | 960 # is some third party code that takes a long time to fix/roll. So, this |
| 961 # flag allows us to have warnings as errors in general to prevent | 961 # flag allows us to have warnings as errors in general to prevent |
| 962 # regressions in most modules, while working on the bits that are | 962 # regressions in most modules, while working on the bits that are |
| 963 # remaining. | 963 # remaining. |
| 964 'win_third_party_warn_as_error%': 'true', | 964 'win_third_party_warn_as_error%': 'true', |
| 965 | 965 |
| 966 # This is the location of the sandbox binary. Chrome looks for this before | |
| 967 # running the zygote process. If found, and SUID, it will be used to | |
| 968 # sandbox the zygote process and, thus, all renderer processes. | |
| 969 'linux_sandbox_path%': '', | |
| 970 | |
| 971 # Clang stuff. | 966 # Clang stuff. |
| 972 'clang%': '<(clang)', | 967 'clang%': '<(clang)', |
| 973 'make_clang_dir%': 'third_party/llvm-build/Release+Asserts', | 968 'make_clang_dir%': 'third_party/llvm-build/Release+Asserts', |
| 974 | 969 |
| 975 # These two variables can be set in GYP_DEFINES while running | 970 # These two variables can be set in GYP_DEFINES while running |
| 976 # |gclient runhooks| to let clang run a plugin in every compilation. | 971 # |gclient runhooks| to let clang run a plugin in every compilation. |
| 977 # Only has an effect if 'clang=1' is in GYP_DEFINES as well. | 972 # Only has an effect if 'clang=1' is in GYP_DEFINES as well. |
| 978 # Example: | 973 # Example: |
| 979 # GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dyl
ib clang_add_plugin=print-fns' gclient runhooks | 974 # GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dyl
ib clang_add_plugin=print-fns' gclient runhooks |
| 980 | 975 |
| (...skipping 3726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4707 # settings in target dicts. SYMROOT is a special case, because many other | 4702 # settings in target dicts. SYMROOT is a special case, because many other |
| 4708 # Xcode variables depend on it, including variables such as | 4703 # Xcode variables depend on it, including variables such as |
| 4709 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4704 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4710 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4705 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4711 # files to appear (when present) in the UI as actual files and not red | 4706 # files to appear (when present) in the UI as actual files and not red |
| 4712 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4707 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4713 # and therefore SYMROOT, needs to be set at the project level. | 4708 # and therefore SYMROOT, needs to be set at the project level. |
| 4714 'SYMROOT': '<(DEPTH)/xcodebuild', | 4709 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4715 }, | 4710 }, |
| 4716 } | 4711 } |
| OLD | NEW |