angular/devtools/tools/ng_module.bzl
Andrew Kushnir 83a6e203e3 refactor(compiler): drop obsolete NgFactory and NgSummary config options (#48268)
The options to generate NgFactory and NgSummary files were added to Ivy for backwards compatibility with ViewEngine. Since ViewEngine was deprecated and removed, the NgFactory and NgSummary files are no longer used as well.

This commit drops obsolete options to generate NgFactory and NgSummary files. Also, the logic that generates those files is also removed.

PR Close #48268
2023-02-21 13:03:59 -08:00

10 lines
301 B
Python

load("//tools:defaults.bzl", _ng_module = "ng_module")
def ng_module(name, tsconfig = "//devtools:tsconfig.json", srcs = [], angular_assets = [], **kwargs):
_ng_module(
name = name,
tsconfig = tsconfig,
srcs = srcs,
assets = angular_assets,
**kwargs
)