2019-01-16 10:19:01 +01:00
|
|
|
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
|
|
2019-01-11 16:07:01 -08:00
|
|
|
package(default_visibility = [
|
|
|
|
|
"//packages/core:__subpackages__",
|
|
|
|
|
"//tools/public_api_guard:__pkg__",
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
ts_library(
|
|
|
|
|
name = "reflection",
|
|
|
|
|
srcs = glob(
|
|
|
|
|
[
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
deps = [
|
|
|
|
|
"//packages/core/src/interface",
|
|
|
|
|
"//packages/core/src/util",
|
|
|
|
|
],
|
|
|
|
|
)
|