mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
1f4c5f72aa
clean up deps in bazel build scripts PR Close #63348
20 lines
359 B
Python
20 lines
359 B
Python
load("//tools:defaults.bzl", "ng_project")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ng_project(
|
|
name = "platform_browser_examples",
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//packages/core",
|
|
"//packages/platform-browser",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "files_for_docgen",
|
|
srcs = glob([
|
|
"**/*.ts",
|
|
]),
|
|
)
|