Skip to content

Commit

Permalink
Fix sync by adding a place holder dependency for chip test and cdk te…
Browse files Browse the repository at this point in the history
…st (tensorflow#6697)

## Motivation for features / changes
Since the filterbar_test file imports @angular/cdk/testing/testbed and
@angular/material/chips/testing it needs a place holder for internal
syncs.

Googlers: This change is in conjunction with cl/589246306. These two
were tested to fix the sync in cl/589243221)
  • Loading branch information
JamesHollyer authored Dec 9, 2023
1 parent 5be3cce commit f8a887b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tensorboard/webapp/angular/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,15 @@ tf_ts_library(
],
)

# This is a dummy rule used as a @angular/material/chips/testing dependency.
tf_ts_library(
name = "expect_angular_material_chips_testing",
srcs = [],
deps = [
"@npm//@angular/material",
],
)

# This is a dummy rule used as a @angular/material/dialog dependency.
tf_ts_library(
name = "expect_angular_material_dialog",
Expand Down
2 changes: 2 additions & 0 deletions tensorboard/webapp/runs/views/runs_table/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,11 @@ tf_ts_library(
"//tensorboard/webapp:selectors",
"//tensorboard/webapp/alert/actions",
"//tensorboard/webapp/angular:expect_angular_cdk_overlay",
"//tensorboard/webapp/angular:expect_angular_cdk_testing_testbed",
"//tensorboard/webapp/angular:expect_angular_core_testing",
"//tensorboard/webapp/angular:expect_angular_material_checkbox",
"//tensorboard/webapp/angular:expect_angular_material_chips",
"//tensorboard/webapp/angular:expect_angular_material_chips_testing",
"//tensorboard/webapp/angular:expect_angular_material_dialog",
"//tensorboard/webapp/angular:expect_angular_material_input",
"//tensorboard/webapp/angular:expect_angular_material_menu",
Expand Down

0 comments on commit f8a887b

Please sign in to comment.