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 3874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3885 ], | 3885 ], |
3886 }], | 3886 }], |
3887 ], | 3887 ], |
3888 'conditions': [ | 3888 'conditions': [ |
3889 ['release_valgrind_build==0', { | 3889 ['release_valgrind_build==0', { |
3890 'target_conditions': [ | 3890 'target_conditions': [ |
3891 ['_toolset=="target"', { | 3891 ['_toolset=="target"', { |
3892 'ldflags': [ | 3892 'ldflags': [ |
3893 # There seems to be a conflict of --icf and -pie | 3893 # There seems to be a conflict of --icf and -pie |
3894 # in gold which can generate crashy binaries. As | 3894 # in gold which can generate crashy binaries. As |
3895 # a security measure, -pie takes precendence for | 3895 # a security measure, -pie takes precedence for |
3896 # now. | 3896 # now. |
3897 #'-Wl,--icf=safe', | 3897 #'-Wl,--icf=safe', |
3898 '-Wl,--icf=none', | 3898 '-Wl,--icf=none', |
3899 ], | 3899 ], |
3900 }], | 3900 }], |
3901 ], | 3901 ], |
3902 }], | 3902 }], |
3903 # Newer gcc's support -fuse-ld, use the flag to force gold | 3903 # Newer gcc's support -fuse-ld, use the flag to force gold |
3904 # selection. | 3904 # selection. |
3905 # gcc -- http://gcc.gnu.org/onlinedocs/gcc-4.8.0/gcc/Optimize-Opti
ons.html | 3905 # gcc -- http://gcc.gnu.org/onlinedocs/gcc-4.8.0/gcc/Optimize-Opti
ons.html |
(...skipping 1373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5279 # settings in target dicts. SYMROOT is a special case, because many other | 5279 # settings in target dicts. SYMROOT is a special case, because many other |
5280 # Xcode variables depend on it, including variables such as | 5280 # Xcode variables depend on it, including variables such as |
5281 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5281 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5282 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5282 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5283 # files to appear (when present) in the UI as actual files and not red | 5283 # files to appear (when present) in the UI as actual files and not red |
5284 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5284 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5285 # and therefore SYMROOT, needs to be set at the project level. | 5285 # and therefore SYMROOT, needs to be set at the project level. |
5286 'SYMROOT': '<(DEPTH)/xcodebuild', | 5286 'SYMROOT': '<(DEPTH)/xcodebuild', |
5287 }, | 5287 }, |
5288 } | 5288 } |
OLD | NEW |