* Migrate hermetic toolchains * Add internal deps endpoint availability check and a warning. * Format. --------- Co-authored-by: Aleksey Khoroshilov <akhoroshilov@brave.com>
17 lines
780 B
Python
Executable File
17 lines
780 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# Copyright (c) 2020 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/.
|
|
|
|
import os
|
|
|
|
# Version number and URL for pre-configured rust dependency package
|
|
# e.g. rust_deps_mac_0.1.0.gz
|
|
DEPS_PACKAGES_URL = "https://brave-build-deps-public.s3.brave.com"
|
|
DEPS_PACKAGES_INTERNAL_URL = "https://vhemnu34de4lf5cj6bx2wwshyy0egdxk.lambda-url.us-west-2.on.aws" # pylint: disable=line-too-long
|
|
MAC_TOOLCHAIN_ROOT = os.path.join(os.path.dirname(os.path.dirname(
|
|
os.path.dirname(__file__))),
|
|
'build', 'mac_files')
|