| 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 4622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4633 'ldflags': [ '-fuse-ld=gold', ], | 4633 'ldflags': [ '-fuse-ld=gold', ], |
| 4634 | 4634 |
| 4635 'target_conditions': [ | 4635 'target_conditions': [ |
| 4636 ['_toolset=="target"', { | 4636 ['_toolset=="target"', { |
| 4637 'ldflags': [ | 4637 'ldflags': [ |
| 4638 # Experimentation found that using four linking threads | 4638 # Experimentation found that using four linking threads |
| 4639 # saved ~20% of link time. | 4639 # saved ~20% of link time. |
| 4640 # https://groups.google.com/a/chromium.org/group/chromium-dev/
browse_thread/thread/281527606915bb36 | 4640 # https://groups.google.com/a/chromium.org/group/chromium-dev/
browse_thread/thread/281527606915bb36 |
| 4641 # Only apply this to the target linker, since the host | 4641 # Only apply this to the target linker, since the host |
| 4642 # linker might not be gold, but isn't used much anyway. | 4642 # linker might not be gold, but isn't used much anyway. |
| 4643 # TODO(raymes): Disable threading because gold is frequently | 4643 '-Wl,--threads', |
| 4644 # crashing on the bots: crbug.com/161942. | 4644 '-Wl,--thread-count=4', |
| 4645 # '-Wl,--threads', | |
| 4646 # '-Wl,--thread-count=4', | |
| 4647 ], | 4645 ], |
| 4648 'conditions': [ | 4646 'conditions': [ |
| 4649 # TODO(thestig): Enable this for disabled cases. | 4647 # TODO(thestig): Enable this for disabled cases. |
| 4650 [ 'buildtype!="Official" and chromeos==0 and release_valgrind_
build==0 and asan==0 and lsan==0 and tsan==0 and msan==0 and ubsan==0 and ubsan_
security==0 and ubsan_vptr==0', { | 4648 [ 'buildtype!="Official" and chromeos==0 and release_valgrind_
build==0 and asan==0 and lsan==0 and tsan==0 and msan==0 and ubsan==0 and ubsan_
security==0 and ubsan_vptr==0', { |
| 4651 'ldflags': [ | 4649 'ldflags': [ |
| 4652 '-Wl,--detect-odr-violations', | 4650 '-Wl,--detect-odr-violations', |
| 4653 ], | 4651 ], |
| 4654 }], | 4652 }], |
| 4655 ], | 4653 ], |
| 4656 }], | 4654 }], |
| (...skipping 1665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6322 # settings in target dicts. SYMROOT is a special case, because many other | 6320 # settings in target dicts. SYMROOT is a special case, because many other |
| 6323 # Xcode variables depend on it, including variables such as | 6321 # Xcode variables depend on it, including variables such as |
| 6324 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6322 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6325 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6323 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6326 # files to appear (when present) in the UI as actual files and not red | 6324 # files to appear (when present) in the UI as actual files and not red |
| 6327 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6325 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6328 # and therefore SYMROOT, needs to be set at the project level. | 6326 # and therefore SYMROOT, needs to be set at the project level. |
| 6329 'SYMROOT': '<(DEPTH)/xcodebuild', | 6327 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6330 }, | 6328 }, |
| 6331 } | 6329 } |
| OLD | NEW |