google-nomulus/java/google/registry/ui/css/BUILD
cpovirk 7b8681c092 Set compatible_with on individual targets rather than use default_compatible_with.
I'm making this change ONLY for packages with targets that I'll be removing the appengine constraint from. default_compatible_with is fine in general; I just want to separate the default_compatible_with->compatible_with CLs from the CLs that remove compatible_with.

This is part of the cleanup after []

Tested:
blaze build --nobuild

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=159713533
2017-07-10 11:09:26 -04:00

52 lines
1 KiB
Text

package(default_visibility = ["//java/google/registry:registry_project"])
licenses(["notice"]) # Apache 2.0
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_css_binary", "closure_css_library")
closure_css_library(
name = "kd_components_lib",
srcs = ["kd_components.css"],
)
closure_css_library(
name = "registry_lib",
srcs = [
"console.css",
"forms.css",
"registry.css",
],
deps = [
":kd_components_lib",
],
)
closure_css_library(
name = "registrar_lib",
srcs = [
"contact-settings.css",
"contact-us.css",
"dashboard.css",
"epp.css",
"resources.css",
"security-settings.css",
],
deps = [":registry_lib"],
)
closure_css_binary(
name = "registrar_bin",
deps = [":registrar_lib"],
)
closure_css_binary(
name = "registrar_dbg",
debug = 1,
deps = [":registrar_lib"],
)
closure_css_library(
name = "registrar_raw",
srcs = ["registrar_imports_raw.css"],
deps = [":registrar_lib"],
)