channelz: remove stray BUILD file (#298)

This commit is contained in:
zpencer 2018-07-11 17:01:45 -07:00 committed by GitHub
parent 10dc637d72
commit dfbf06f5f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
licenses(["notice"]) # Apache 2.0
package(default_visibility = ["//visibility:public"])
load("//javascript/angular2:build_defs.bzl", "ng_module")
ng_module(
name = "app",
srcs = glob(["**/*.ts"]),
assets = glob(["**/*.css"]) + glob(["**/*.html"]),
deps = [
"//third_party/javascript/angular2:common",
"//third_party/javascript/angular2:common_http",
"//third_party/javascript/angular2:core",
"//third_party/javascript/angular2:forms",
"//third_party/javascript/angular2:platform_browser",
"//third_party/javascript/angular2:router",
"//third_party/javascript/rxjs",
],
)
load("//javascript/typescript:build_defs.bzl", "ts_config")
ts_config(
name = "tsconfig",
deps = [
":app",
"//third_party/javascript/angular2:common",
"//third_party/javascript/angular2:common_http",
"//third_party/javascript/angular2:core",
"//third_party/javascript/angular2:forms",
"//third_party/javascript/angular2:platform_browser",
"//third_party/javascript/angular2:router",
"//third_party/javascript/rxjs",
],
)