* Update rust tools build process to share intermediate targets. * Remove unused logic. * Modernize gn_run_rsp.py. * Use separate crate target dir for each build_crate target. * Add release target adjustments to update.py. * Simplify cargo-audit path. * Move cargo-audit target back to tools/crates.
13 lines
391 B
Plaintext
13 lines
391 B
Plaintext
# Copyright (c) 2025 The Brave Authors. All rights reserved.
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
# You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
if (host_os == "win") {
|
|
host_path_sep = ";"
|
|
host_exe_suffix = ".exe"
|
|
} else {
|
|
host_path_sep = ":"
|
|
host_exe_suffix = ""
|
|
}
|