Changeset View
Changeset View
Standalone View
Standalone View
games/anki/files/bazel/repos.bzl
Show All 25 Lines | path = "%%_MY_LOCALREPO%%/rules_proto", | ||||
# python | # python | ||||
########## | ########## | ||||
native.local_repository( | native.local_repository( | ||||
name = "rules_python", | name = "rules_python", | ||||
path = "%%_MY_LOCALREPO%%/rules_python", | path = "%%_MY_LOCALREPO%%/rules_python", | ||||
) | ) | ||||
# python pip | |||||
############## | |||||
native.local_repository( | |||||
name = "com_github_ali5h_rules_pip", | |||||
path = "%%_MY_LOCALREPO%%/rules_pip", | |||||
) | |||||
# javascript | # javascript | ||||
############## | ############## | ||||
native.local_repository( | native.local_repository( | ||||
name = "build_bazel_rules_nodejs", | name = "build_bazel_rules_nodejs", | ||||
path = "%%_MY_LOCALREPO%%/rules_nodejs", | path = "%%_MY_LOCALREPO%%/rules_nodejs", | ||||
) | ) | ||||
# esbuild-toolchain | |||||
##################### | |||||
native.local_repository( | native.local_repository( | ||||
name = "esbuild_toolchain", | name = "rules_nodejs", | ||||
path = "%%_MY_LOCALREPO%%/esbuild_toolchain", | path = "%%_MY_LOCALREPO%%/rules_nodejs", | ||||
) | ) | ||||
# sass | # sass | ||||
######## | ######## | ||||
native.local_repository( | native.local_repository( | ||||
name = "io_bazel_rules_sass", | name = "io_bazel_rules_sass", | ||||
path = "%%_MY_LOCALREPO%%/rules_sass", | path = "%%_MY_LOCALREPO%%/rules_sass", | ||||
) | ) | ||||
Show All 26 Lines | def register_repos(): | ||||
path = "%%_MY_LOCALREPO%%/rules_java", | path = "%%_MY_LOCALREPO%%/rules_java", | ||||
) | ) | ||||
# transitive dependency | # transitive dependency | ||||
######################### | ######################### | ||||
native.local_repository( | native.local_repository( | ||||
name = "build_bazel_rules_typescript", | name = "build_bazel_rules_typescript", | ||||
path = "%%_MY_LOCALREPO%%/rules_nodejs/third_party/github.com/bazelbuild/rules_typescript", | path = "%%_MY_LOCALREPO%%/rules_nodejs/third_party/github.com/bazelbuild/rules_typescript", | ||||
) | |||||
# stub pyqt5 repository | |||||
######################### | |||||
native.local_repository( | |||||
name = "pyqt5", | |||||
path = "%%_MY_LOCALREPO%%/pyqt5", | |||||
) | ) | ||||
# provides node from ports | # provides node from ports | ||||
############################ | ############################ | ||||
native.local_repository( | native.local_repository( | ||||
name = "local_node", | name = "local_node", | ||||
path = "%%_MY_LOCALREPO%%/local_node", | path = "%%_MY_LOCALREPO%%/local_node", | ||||
) | ) |