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