OLD | NEW |
---|---|
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import("//build/config/clang/clang.gni") | 5 import("//build/config/clang/clang.gni") |
6 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
8 import("//build/config/v8_target_cpu.gni") | 8 import("//build/config/v8_target_cpu.gni") |
9 import("//build/toolchain/cc_wrapper.gni") | 9 import("//build/toolchain/cc_wrapper.gni") |
10 import("//build/toolchain/goma.gni") | 10 import("//build/toolchain/goma.gni") |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
66 # toolchain is updated. | 66 # toolchain is updated. |
67 # - shlib_extension | 67 # - shlib_extension |
68 # If this string is specified it will be used for the file extension | 68 # If this string is specified it will be used for the file extension |
69 # for a shared library, rather than default value specified in | 69 # for a shared library, rather than default value specified in |
70 # toolchain.gni | 70 # toolchain.gni |
71 # - strip | 71 # - strip |
72 # Location of the strip executable. When specified, strip will be run on | 72 # Location of the strip executable. When specified, strip will be run on |
73 # all shared libraries and executables as they are built. The pre-stripped | 73 # all shared libraries and executables as they are built. The pre-stripped |
74 # artifacts will be put in lib.unstripped/ and exe.unstripped/. | 74 # artifacts will be put in lib.unstripped/ and exe.unstripped/. |
75 # | 75 # |
76 # Optional build argument contols. | 76 # Optional build argument controls. |
Nico
2016/08/05 00:55:57
I noticed this one while writing the is_asan CL I
| |
77 # | 77 # |
78 # - clear_sanitizers | 78 # - clear_sanitizers |
79 # When set to true, is_asan, is_msan, etc.will all be set to false. Often | 79 # When set to true, is_asan, is_msan, etc.will all be set to false. Often |
80 # secondary toolchains do not want to run with sanitizers. | 80 # secondary toolchains do not want to run with sanitizers. |
81 # - is_clang | 81 # - is_clang |
82 # Whether to use clang instead of gcc. | 82 # Whether to use clang instead of gcc. |
83 # - is_component_build | 83 # - is_component_build |
84 # Whether to forcibly enable or disable component builds for this | 84 # Whether to forcibly enable or disable component builds for this |
85 # toolchain; if not specified, the toolchain will inherit the | 85 # toolchain; if not specified, the toolchain will inherit the |
86 # default setting. | 86 # default setting. |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
538 "toolchain_os", | 538 "toolchain_os", |
539 "use_gold", | 539 "use_gold", |
540 "v8_toolchain_cpu", | 540 "v8_toolchain_cpu", |
541 ]) | 541 ]) |
542 | 542 |
543 if (defined(invoker.use_debug_fission)) { | 543 if (defined(invoker.use_debug_fission)) { |
544 use_debug_fission = invoker.use_debug_fission | 544 use_debug_fission = invoker.use_debug_fission |
545 } | 545 } |
546 } | 546 } |
547 } | 547 } |
OLD | NEW |