2017-06-02 12:43:52 -04:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
2017-12-06 09:56:49 -05:00
|
|
|
|
2017-12-17 18:10:54 -05:00
|
|
|
exports_files([
|
2018-03-01 13:41:35 -05:00
|
|
|
"LICENSE",
|
2020-04-24 13:26:36 -04:00
|
|
|
"protractor-perf.conf.js",
|
2018-12-18 01:09:39 -05:00
|
|
|
"karma-js.conf.js",
|
|
|
|
"browser-providers.conf.js",
|
2020-03-10 01:17:48 -04:00
|
|
|
"scripts/ci/track-payload-size.sh",
|
|
|
|
"scripts/ci/payload-size.sh",
|
|
|
|
"scripts/ci/payload-size.js",
|
2020-03-17 07:58:17 -04:00
|
|
|
"package.json",
|
2017-12-17 18:10:54 -05:00
|
|
|
])
|
2017-06-02 12:43:52 -04:00
|
|
|
|
2019-04-02 14:42:58 -04:00
|
|
|
alias(
|
|
|
|
name = "tsconfig.json",
|
|
|
|
actual = "//packages:tsconfig-build.json",
|
|
|
|
)
|
|
|
|
|
2017-12-16 14:35:47 -05:00
|
|
|
filegroup(
|
2017-12-18 18:37:05 -05:00
|
|
|
name = "web_test_bootstrap_scripts",
|
2017-12-16 14:35:47 -05:00
|
|
|
# do not sort
|
|
|
|
srcs = [
|
2019-06-19 00:26:53 -04:00
|
|
|
"@npm//:node_modules/core-js/client/core.js",
|
2019-10-05 23:06:53 -04:00
|
|
|
"//packages/zone.js/dist:zone.js",
|
|
|
|
"//packages/zone.js/dist:zone-testing.js",
|
|
|
|
"//packages/zone.js/dist:task-tracking.js",
|
2018-06-04 17:58:23 -04:00
|
|
|
"//:test-events.js",
|
2018-12-18 01:09:39 -05:00
|
|
|
"//:shims_for_IE.js",
|
|
|
|
# Including systemjs because it defines `__eval`, which produces correct stack traces.
|
2019-06-19 00:26:53 -04:00
|
|
|
"@npm//:node_modules/systemjs/dist/system.src.js",
|
|
|
|
"@npm//:node_modules/reflect-metadata/Reflect.js",
|
2017-12-16 14:35:47 -05:00
|
|
|
],
|
|
|
|
)
|
2017-12-18 18:37:05 -05:00
|
|
|
|
|
|
|
filegroup(
|
2018-05-31 02:49:37 -04:00
|
|
|
name = "angularjs_scripts",
|
2017-12-18 18:37:05 -05:00
|
|
|
srcs = [
|
2018-12-17 12:28:06 -05:00
|
|
|
# We also declare the unminfied AngularJS files since these can be used for
|
|
|
|
# local debugging (e.g. see: packages/upgrade/test/common/test_helpers.ts)
|
2019-06-19 00:26:53 -04:00
|
|
|
"@npm//:node_modules/angular/angular.js",
|
|
|
|
"@npm//:node_modules/angular/angular.min.js",
|
|
|
|
"@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-mocks/angular-mocks.js",
|
|
|
|
"@npm//:node_modules/angular-mocks-1.5/angular-mocks.js",
|
|
|
|
"@npm//:node_modules/angular-mocks-1.6/angular-mocks.js",
|
2017-12-18 18:37:05 -05:00
|
|
|
],
|
|
|
|
)
|