mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Uploading payload size is unreliable from within Bazel. This is because tests might not run for every commit, tests might have been cached from a pull request RBE-build (causing payload uploading to be skipped most of the time as every change comes from a PR) We should disable the uploading as this is a fundamental problem (good thing to note now) that we can solve with better payload size tracking that we want to establish as part of dev-infra. PR Close #45446
67 lines
2.2 KiB
Text
67 lines
2.2 KiB
Text
load("@build_bazel_rules_nodejs//:index.bzl", "nodejs_binary")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files([
|
|
"LICENSE",
|
|
"karma-js.conf.js",
|
|
"browser-providers.conf.js",
|
|
"scripts/ci/bazel-payload-size.sh",
|
|
"scripts/ci/payload-size.sh",
|
|
"scripts/ci/payload-size.js",
|
|
"package.json",
|
|
])
|
|
|
|
alias(
|
|
name = "tsconfig.json",
|
|
actual = "//packages:tsconfig-build.json",
|
|
)
|
|
|
|
filegroup(
|
|
name = "web_test_bootstrap_scripts",
|
|
# do not sort
|
|
srcs = [
|
|
"@npm//:node_modules/core-js-bundle/index.js",
|
|
"//packages/zone.js/bundles:zone.umd.js",
|
|
"//packages/zone.js/bundles:zone-testing.umd.js",
|
|
"//packages/zone.js/bundles:task-tracking.umd.js",
|
|
"//:test-events.js",
|
|
"//:third_party/shims_for_internal_tests.js",
|
|
# Including systemjs because it defines `__eval`, which produces correct stack traces.
|
|
"@npm//:node_modules/systemjs/dist/system.src.js",
|
|
"@npm//:node_modules/reflect-metadata/Reflect.js",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "angularjs_scripts",
|
|
srcs = [
|
|
# We also declare the unminified AngularJS files since these can be used for
|
|
# local debugging (e.g. see: packages/upgrade/test/common/test_helpers.ts)
|
|
"@npm//:node_modules/angular-1.5/angular.js",
|
|
"@npm//:node_modules/angular-1.5/angular.min.js",
|
|
"@npm//:node_modules/angular-1.6/angular.js",
|
|
"@npm//:node_modules/angular-1.6/angular.min.js",
|
|
"@npm//:node_modules/angular-1.7/angular.js",
|
|
"@npm//:node_modules/angular-1.7/angular.min.js",
|
|
"@npm//:node_modules/angular-mocks-1.5/angular-mocks.js",
|
|
"@npm//:node_modules/angular-mocks-1.6/angular-mocks.js",
|
|
"@npm//:node_modules/angular-mocks-1.7/angular-mocks.js",
|
|
"@npm//:node_modules/angular-mocks-1.8/angular-mocks.js",
|
|
"@npm//:node_modules/angular-1.8/angular.js",
|
|
"@npm//:node_modules/angular-1.8/angular.min.js",
|
|
],
|
|
)
|
|
|
|
# Detect if the build is running under --stamp
|
|
config_setting(
|
|
name = "stamp",
|
|
values = {"stamp": "true"},
|
|
)
|
|
|
|
nodejs_binary(
|
|
name = "yarn_vendored",
|
|
data = [".yarn/releases/yarn-1.22.17.cjs"],
|
|
entry_point = ".yarn/releases/yarn-1.22.17.cjs",
|
|
visibility = ["//integration:__subpackages__"],
|
|
)
|