From a4c3ceeddb5ac4f2375112b04e085329e77b94b1 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Fri, 22 Nov 2019 12:33:55 -0800 Subject: [PATCH] build: change visible compiler name during ng_module builds to be Ivy/ViewEngine (#33995) Previously the visible compiler name during the ng_module build action was ngc/ngtsc. These names however are only really known to the compiler team. Instead we should use more general terms for which compiler is used to match how we speak about compiler choices. PR Close #33995 --- packages/bazel/src/ng_module.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bazel/src/ng_module.bzl b/packages/bazel/src/ng_module.bzl index 3081946bd4..f5e268b8c0 100644 --- a/packages/bazel/src/ng_module.bzl +++ b/packages/bazel/src/ng_module.bzl @@ -89,7 +89,7 @@ def _compiler_name(ctx): The name of the current compiler to be displayed in build output """ - return "ngtsc" if _is_ivy_enabled(ctx) else "ngc" + return "Ivy" if _is_ivy_enabled(ctx) else "ViewEngine" def _is_view_engine_enabled(ctx): """Determines whether Angular outputs will be produced by the current compilation strategy.