Files
gerrit/polygerrit-ui/app/BUILD
Dmitrii Filippov d97c843ccf Cleanup unused bower components and rules
All unused bower components and rules are removed. Some rules
are not removed because they are used by plugins. We should keep them
until all core plugins get rid of bower components.

Change-Id: I6e6b5a3805fd68e7e438135c9b60e9d732cb8092
2020-02-12 15:42:46 +00:00

187 lines
3.9 KiB
Python

load(":rules.bzl", "polygerrit_bundle")
load("//tools/node_tools/polygerrit_app_preprocessor:index.bzl", "update_links")
package(default_visibility = ["//visibility:public"])
polygerrit_bundle(
name = "polygerrit_ui",
srcs = glob(
[
"**/*.html",
"**/*.js",
],
exclude = [
"node_modules/**",
"node_modules_licenses/**",
"test/**",
"**/*_test.html",
],
),
outs = ["polygerrit_ui.zip"],
entry_point = "elements/gr-app.html",
redirects = "redirects.json",
)
filegroup(
name = "pg_code",
srcs = glob(
[
"**/*.html",
"**/*.js",
],
exclude = [
"node_modules/**",
"node_modules_licenses/**",
],
),
)
filegroup(
name = "pg_code_without_test",
srcs = glob(
[
"**/*.html",
"**/*.js",
],
exclude = [
"node_modules/**",
"node_modules_licenses/**",
"**/*_test.html",
"test/**",
"samples/**",
],
),
)
# update_links - temporary action. Later links/references will be updated in repository,
# so this rule will be removed.
update_links(
name = "test-srcs-updated-links",
srcs = [
"test/common-test-setup.html",
"test/index.html",
":pg_code",
],
redirects = "redirects.json",
)
# Workaround for https://github.com/bazelbuild/bazel/issues/1305
filegroup(
name = "test-srcs-updated-links-fg",
srcs = [
":test-srcs-updated-links",
"@ui_dev_npm//:node_modules",
"@ui_npm//:node_modules",
],
)
sh_test(
name = "wct_test",
size = "enormous",
srcs = ["wct_test.sh"],
args = [
"$(location @ui_dev_npm//web-component-tester/bin:wct)",
],
data = [
":test-srcs-updated-links-fg",
"@ui_dev_npm//web-component-tester/bin:wct",
],
# Should not run sandboxed.
tags = [
"local",
"manual",
],
)
# TODO(taoalpha): alias to `npm run eslint` or just remove once CI moved to npm
sh_test(
name = "lint_test",
size = "large",
srcs = ["lint_test.sh"],
data = [
".eslintrc.json",
":pg_code",
],
# Should not run sandboxed.
tags = [
"local",
"manual",
],
)
# update_links - temporary action. Later links/references will be updated in repository,
# so this rule will be removed.
update_links(
name = "polylint-updated-links",
srcs = [
":pg_code_without_test",
],
redirects = "redirects.json",
)
# Workaround for https://github.com/bazelbuild/bazel/issues/1305
filegroup(
name = "polylint-updated-links-fg",
srcs = [
":polylint-updated-links",
"@ui_npm//:node_modules",
],
)
sh_test(
name = "polylint_test",
size = "large",
srcs = ["polylint_test.sh"],
args = [
"$(location @tools_npm//polymer-cli/bin:polymer)",
"$(location polymer.json)",
],
data = [
"polymer.json",
":polylint-updated-links-fg",
"@tools_npm//polymer-cli/bin:polymer",
],
# Should not run sandboxed.
tags = [
"local",
"manual",
],
)
DIRECTORIES = [
"admin",
"change",
"change-list",
"core",
"diff",
"edit",
"plugins",
"settings",
"shared",
"gr-app",
]
[sh_test(
name = "template_test_" + directory,
size = "enormous",
srcs = ["template_test.sh"],
args = [directory],
data = [
":pg_code",
":template_test_srcs",
],
tags = [
# Should not run sandboxed.
"local",
"template",
],
) for directory in DIRECTORIES]
filegroup(
name = "template_test_srcs",
srcs = [
"template_test_srcs/convert_for_template_tests.py",
"template_test_srcs/template_test.js",
],
)