Sean Condon | 98b6ddb | 2019-12-24 08:07:40 +0000 | [diff] [blame] | 1 | """ |
| 2 | Copyright 2020-present Open Networking Foundation |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | """ |
| 16 | |
| 17 | package(default_visibility = ["//:__subpackages__"]) |
| 18 | |
| 19 | load("@npm_angular_bazel//:index.bzl", "ng_module") |
| 20 | |
| 21 | ng_module( |
| 22 | name = "fm-gui2-lib", |
| 23 | srcs = glob( |
| 24 | include = [ |
| 25 | "**/*.ts", |
| 26 | ], |
| 27 | exclude = [ |
| 28 | "**/*.spec.ts", |
| 29 | ], |
| 30 | ), |
| 31 | assets = glob([ |
| 32 | "**/*.css", |
| 33 | "**/*.html", |
| 34 | ]), |
Sean Condon | a3ad779 | 2020-01-04 19:26:34 +0000 | [diff] [blame] | 35 | tsconfig = "//web/gui2:tsconfig.json", |
Sean Condon | 98b6ddb | 2019-12-24 08:07:40 +0000 | [diff] [blame] | 36 | deps = [ |
| 37 | "//web/gui2-fw-lib", |
| 38 | "@npm//@angular/animations", |
| 39 | "@npm//@angular/core", |
| 40 | "@npm//@angular/forms", |
| 41 | "@npm//@angular/platform-browser-dynamic", |
| 42 | "@npm//@angular/router", |
| 43 | "@npm//@types", |
| 44 | "@npm//rxjs", |
| 45 | ], |
| 46 | ) |