blob: a094b92fe90f3ee917c3e2af7ad31c3c93d47485 [file] [log] [blame]
#!/bin/bash
# Copyright 2018 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#### CATEGORY=Build
### manually edit args.gn for the current build directory
## If FUCHSIA_BUILD_DIR is out/default, this is simply:
## gn args out/default
## It is useful for seeing and editing the arguments that are currently
## configured.
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"/lib/vars.sh || exit $?
fx-config-read
set -ex
if [[ -f "${FUCHSIA_BUILD_DIR}/rust-project.json" ]]; then
ln -f -s "${FUCHSIA_BUILD_DIR}/rust-project.json" rust-project.json
fi
fx-gn args "$FUCHSIA_BUILD_DIR" "$@"