OLD | NEW |
---|---|
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 # Configures if the lld linker should be used. | |
6 | |
5 declare_args() { | 7 declare_args() { |
6 # Mojo application directories are created within this subdirectory. | 8 # Set to true to use lld. |
brettw
2016/04/12 21:54:51
Can you say what lld is? I didn't know and had to
| |
7 mojo_application_subdir = "Mojo Applications" | 9 # Currently only has an effect on Windows. |
10 use_lld = false | |
brettw
2016/04/12 21:54:51
Will you need this outside of the windows toolchai
| |
8 } | 11 } |
OLD | NEW |