211 lines
7.0 KiB
Python
211 lines
7.0 KiB
Python
"""Re-export of some bazel rules with repository-wide defaults."""
|
|
|
|
load("@build_bazel_rules_nodejs//:defs.bzl", _jasmine_node_test = "jasmine_node_test", _nodejs_binary = "nodejs_binary", _npm_package = "npm_package")
|
|
load("@build_bazel_rules_typescript//:defs.bzl", _ts_library = "ts_library", _ts_web_test_suite = "ts_web_test_suite")
|
|
load("//packages/bazel:index.bzl", _ng_module = "ng_module", _ng_package = "ng_package")
|
|
load("//packages/bazel/src:ng_module.bzl", _internal_global_ng_module = "internal_global_ng_module")
|
|
load("//packages/bazel/src:ng_rollup_bundle.bzl", _ng_rollup_bundle = "ng_rollup_bundle")
|
|
|
|
DEFAULT_TSCONFIG_BUILD = "//packages:tsconfig-build.json"
|
|
DEFAULT_TSCONFIG_TEST = "//packages:tsconfig-test.json"
|
|
DEFAULT_COMPILER_BIN = "//:@bazel/typescript/tsc_wrapped"
|
|
DEFAULT_TS_TYPINGS = "@ngdeps//typescript:typescript__typings"
|
|
DEFAULT_KARMA_BIN = "//:@bazel/karma/karma"
|
|
|
|
# Packages which are versioned together on npm
|
|
ANGULAR_SCOPED_PACKAGES = ["@angular/%s" % p for p in [
|
|
# core should be the first package because it's the main package in the group
|
|
# this is significant for Angular CLI and "ng update" specifically, @angular/core
|
|
# is considered the identifier of the group by these tools.
|
|
"core",
|
|
"bazel",
|
|
"common",
|
|
"compiler",
|
|
"compiler-cli",
|
|
"animations",
|
|
"elements",
|
|
"platform-browser",
|
|
"platform-browser-dynamic",
|
|
"forms",
|
|
"http",
|
|
"platform-server",
|
|
"platform-webworker",
|
|
"platform-webworker-dynamic",
|
|
"upgrade",
|
|
"router",
|
|
"language-service",
|
|
"service-worker",
|
|
]]
|
|
|
|
PKG_GROUP_REPLACEMENTS = {
|
|
"\"NG_UPDATE_PACKAGE_GROUP\"": """[
|
|
%s
|
|
]""" % ",\n ".join(["\"%s\"" % s for s in ANGULAR_SCOPED_PACKAGES]),
|
|
}
|
|
|
|
def ts_library(tsconfig = None, testonly = False, deps = [], **kwargs):
|
|
"""Default values for ts_library"""
|
|
deps = deps + ["@ngdeps//tslib"]
|
|
if testonly:
|
|
# Match the types[] in //packages:tsconfig-test.json
|
|
deps.append("@ngdeps//@types/jasmine")
|
|
deps.append("@ngdeps//@types/node")
|
|
if not tsconfig:
|
|
if testonly:
|
|
tsconfig = DEFAULT_TSCONFIG_TEST
|
|
else:
|
|
tsconfig = DEFAULT_TSCONFIG_BUILD
|
|
_ts_library(
|
|
tsconfig = tsconfig,
|
|
testonly = testonly,
|
|
deps = deps,
|
|
compiler = DEFAULT_COMPILER_BIN,
|
|
node_modules = DEFAULT_TS_TYPINGS,
|
|
**kwargs
|
|
)
|
|
|
|
def ng_module(name, tsconfig = None, entry_point = None, testonly = False, deps = [], **kwargs):
|
|
"""Default values for ng_module"""
|
|
deps = deps + ["@ngdeps//tslib"]
|
|
if testonly:
|
|
# Match the types[] in //packages:tsconfig-test.json
|
|
deps.append("@ngdeps//@types/jasmine")
|
|
deps.append("@ngdeps//@types/node")
|
|
if not tsconfig:
|
|
if testonly:
|
|
tsconfig = DEFAULT_TSCONFIG_TEST
|
|
else:
|
|
tsconfig = DEFAULT_TSCONFIG_BUILD
|
|
if not entry_point:
|
|
entry_point = "public_api.ts"
|
|
_ng_module(
|
|
name = name,
|
|
flat_module_out_file = name,
|
|
tsconfig = tsconfig,
|
|
entry_point = entry_point,
|
|
testonly = testonly,
|
|
deps = deps,
|
|
node_modules = DEFAULT_TS_TYPINGS,
|
|
**kwargs
|
|
)
|
|
|
|
# ivy_ng_module behaves like ng_module, and under --define=compile=legacy it runs ngc with global
|
|
# analysis but produces Ivy outputs. Under other compile modes, it behaves as ng_module.
|
|
# TODO(alxhub): remove when ngtsc supports the same use cases.
|
|
def ivy_ng_module(name, tsconfig = None, entry_point = None, testonly = False, deps = [], **kwargs):
|
|
"""Default values for ivy_ng_module"""
|
|
deps = deps + ["@ngdeps//tslib"]
|
|
if testonly:
|
|
# Match the types[] in //packages:tsconfig-test.json
|
|
deps.append("@ngdeps//@types/jasmine")
|
|
deps.append("@ngdeps//@types/node")
|
|
if not tsconfig:
|
|
if testonly:
|
|
tsconfig = DEFAULT_TSCONFIG_TEST
|
|
else:
|
|
tsconfig = DEFAULT_TSCONFIG_BUILD
|
|
if not entry_point:
|
|
entry_point = "public_api.ts"
|
|
_internal_global_ng_module(
|
|
name = name,
|
|
flat_module_out_file = name,
|
|
tsconfig = tsconfig,
|
|
entry_point = entry_point,
|
|
testonly = testonly,
|
|
deps = deps,
|
|
node_modules = DEFAULT_TS_TYPINGS,
|
|
**kwargs
|
|
)
|
|
|
|
def ng_package(name, readme_md = None, license_banner = None, deps = [], **kwargs):
|
|
"""Default values for ng_package"""
|
|
if not readme_md:
|
|
readme_md = "//packages:README.md"
|
|
if not license_banner:
|
|
license_banner = "//packages:license-banner.txt"
|
|
deps = deps + [
|
|
"@ngdeps//tslib",
|
|
]
|
|
|
|
_ng_package(
|
|
name = name,
|
|
deps = deps,
|
|
readme_md = readme_md,
|
|
license_banner = license_banner,
|
|
replacements = PKG_GROUP_REPLACEMENTS,
|
|
**kwargs
|
|
)
|
|
|
|
def npm_package(name, replacements = {}, **kwargs):
|
|
"""Default values for npm_package"""
|
|
_npm_package(
|
|
name = name,
|
|
replacements = dict(replacements, **PKG_GROUP_REPLACEMENTS),
|
|
**kwargs
|
|
)
|
|
|
|
def ts_web_test_suite(bootstrap = [], deps = [], **kwargs):
|
|
"""Default values for ts_web_test_suite"""
|
|
if not bootstrap:
|
|
bootstrap = ["//:web_test_bootstrap_scripts"]
|
|
local_deps = [
|
|
"@ngdeps//node_modules/tslib:tslib.js",
|
|
"//tools/testing:browser",
|
|
] + deps
|
|
|
|
_ts_web_test_suite(
|
|
bootstrap = bootstrap,
|
|
deps = local_deps,
|
|
# Run unit tests on local Chromium by default.
|
|
# You can exclude tests based on tags, e.g. to skip Firefox testing,
|
|
# `bazel test --test_tag_filters=-browser:firefox-local [targets]`
|
|
browsers = [
|
|
"@io_bazel_rules_webtesting//browsers:chromium-local",
|
|
# Don't test on local Firefox by default, for faster builds.
|
|
# We think that bugs in Angular tend to be caught the same in any
|
|
# evergreen browser.
|
|
# "@io_bazel_rules_webtesting//browsers:firefox-local",
|
|
# TODO(alexeagle): add remote browsers on SauceLabs
|
|
],
|
|
karma = DEFAULT_KARMA_BIN,
|
|
**kwargs
|
|
)
|
|
|
|
def nodejs_binary(**kwargs):
|
|
"""Default values for nodejs_binary"""
|
|
_nodejs_binary(
|
|
# Pass-thru --define=compile=foo as an environment variable
|
|
configuration_env_vars = ["compile"],
|
|
**kwargs
|
|
)
|
|
|
|
def jasmine_node_test(deps = [], **kwargs):
|
|
"""Default values for jasmine_node_test"""
|
|
deps = deps + [
|
|
# Very common dependencies for tests
|
|
"@ngdeps//chokidar",
|
|
"@ngdeps//domino",
|
|
"@ngdeps//jasmine",
|
|
"@ngdeps//jasmine-core",
|
|
"@ngdeps//mock-fs",
|
|
"@ngdeps//reflect-metadata",
|
|
"@ngdeps//tslib",
|
|
"@ngdeps//xhr2",
|
|
]
|
|
_jasmine_node_test(
|
|
deps = deps,
|
|
# Pass-thru --define=compile=foo as an environment variable
|
|
configuration_env_vars = ["compile"],
|
|
**kwargs
|
|
)
|
|
|
|
def ng_rollup_bundle(deps = [], **kwargs):
|
|
"""Default values for ng_rollup_bundle"""
|
|
deps = deps + [
|
|
"@ngdeps//tslib",
|
|
]
|
|
_ng_rollup_bundle(
|
|
deps = deps,
|
|
**kwargs
|
|
)
|