| OLD | NEW |
| 1 #!/bin/bash |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 2 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 4 | 5 |
| 5 import("//fusl/fusl.gni") | 6 # Note: In the SDK, this script lives in mojo_sdk_setup. |
| 7 SCRIPT_DIR=$(dirname $0) |
| 6 | 8 |
| 7 fusl_source_set("ldso") { | 9 ${SCRIPT_DIR}/download_mojom_tool.sh |
| 8 configs = [ "//fusl:fusl_no_stack_protector_config" ] | 10 ${SCRIPT_DIR}/download_clang.sh |
| 9 | |
| 10 sources = [ | |
| 11 "dlstart.c", | |
| 12 "dynlink.c", | |
| 13 ] | |
| 14 } | |
| OLD | NEW |