2017-06-02 09:43:52 -07:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
2017-12-06 06:56:49 -08:00
|
|
|
|
2017-12-17 15:10:54 -08:00
|
|
|
exports_files([
|
2018-03-01 10:41:35 -08:00
|
|
|
"LICENSE",
|
2018-12-17 22:09:39 -08:00
|
|
|
"karma-js.conf.js",
|
|
|
|
|
"browser-providers.conf.js",
|
2020-03-09 22:17:48 -07:00
|
|
|
"scripts/ci/track-payload-size.sh",
|
|
|
|
|
"scripts/ci/payload-size.sh",
|
|
|
|
|
"scripts/ci/payload-size.js",
|
2020-03-17 12:58:17 +01:00
|
|
|
"package.json",
|
2017-12-17 15:10:54 -08:00
|
|
|
])
|
2017-06-02 09:43:52 -07:00
|
|
|
|
2019-04-02 11:42:58 -07:00
|
|
|
alias(
|
|
|
|
|
name = "tsconfig.json",
|
|
|
|
|
actual = "//packages:tsconfig-build.json",
|
|
|
|
|
)
|
|
|
|
|
|
2017-12-16 11:35:47 -08:00
|
|
|
filegroup(
|
2017-12-18 15:37:05 -08:00
|
|
|
name = "web_test_bootstrap_scripts",
|
2017-12-16 11:35:47 -08:00
|
|
|
# do not sort
|
|
|
|
|
srcs = [
|
2021-04-21 10:13:34 +02:00
|
|
|
"@npm//:node_modules/core-js-bundle/index.js",
|
2020-05-17 10:53:03 +09:00
|
|
|
"//packages/zone.js/bundles:zone.umd.js",
|
|
|
|
|
"//packages/zone.js/bundles:zone-testing.umd.js",
|
|
|
|
|
"//packages/zone.js/bundles:task-tracking.umd.js",
|
2018-06-04 14:58:23 -07:00
|
|
|
"//:test-events.js",
|
2021-07-30 15:11:12 -07:00
|
|
|
"//:third_party/shims_for_internal_tests.js",
|
2018-12-17 22:09:39 -08:00
|
|
|
# Including systemjs because it defines `__eval`, which produces correct stack traces.
|
2019-06-18 21:26:53 -07:00
|
|
|
"@npm//:node_modules/systemjs/dist/system.src.js",
|
|
|
|
|
"@npm//:node_modules/reflect-metadata/Reflect.js",
|
2017-12-16 11:35:47 -08:00
|
|
|
],
|
|
|
|
|
)
|
2017-12-18 15:37:05 -08:00
|
|
|
|
|
|
|
|
filegroup(
|
2018-05-30 23:49:37 -07:00
|
|
|
name = "angularjs_scripts",
|
2017-12-18 15:37:05 -08:00
|
|
|
srcs = [
|
2020-07-14 12:44:07 -05:00
|
|
|
# We also declare the unminified AngularJS files since these can be used for
|
2018-12-17 18:28:06 +01:00
|
|
|
# local debugging (e.g. see: packages/upgrade/test/common/test_helpers.ts)
|
2019-06-18 21:26:53 -07:00
|
|
|
"@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",
|
2020-12-04 16:53:12 +02:00
|
|
|
"@npm//:node_modules/angular-1.7/angular.js",
|
|
|
|
|
"@npm//:node_modules/angular-1.7/angular.min.js",
|
2019-06-18 21:26:53 -07:00
|
|
|
"@npm//:node_modules/angular-mocks-1.5/angular-mocks.js",
|
|
|
|
|
"@npm//:node_modules/angular-mocks-1.6/angular-mocks.js",
|
2020-12-04 16:53:12 +02:00
|
|
|
"@npm//:node_modules/angular-mocks-1.7/angular-mocks.js",
|
2021-07-06 15:29:19 +02:00
|
|
|
"@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",
|
2017-12-18 15:37:05 -08:00
|
|
|
],
|
|
|
|
|
)
|
2020-06-25 01:32:41 -07:00
|
|
|
|
|
|
|
|
# Detect if the build is running under --stamp
|
|
|
|
|
config_setting(
|
|
|
|
|
name = "stamp",
|
|
|
|
|
values = {"stamp": "true"},
|
|
|
|
|
)
|