Skip to content

Commit ffa86a8

Browse files
authored
Remove strict_deps = False from some sass rules, that are no longer necessary (#6743)
`strict_deps = False` in sass rules were originally added due to requirements from internal code base in #6184, but *some of them* are now being removed. Googlers, see b/323361346. This should be a no-op for OSS.
1 parent 933f37a commit ffa86a8

File tree

29 files changed

+0
-47
lines changed

29 files changed

+0
-47
lines changed

tensorboard/defs/defs.bzl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,6 @@ def tf_sass_binary(deps = [], include_paths = [], strict_deps = True, **kwargs):
255255
strict_deps is included here and intentionally ignored so it can be used
256256
internally.
257257
"""
258-
if (strict_deps):
259-
fail("all tf_sass_binary calls need to have the strict_deps = False override for internal calls");
260258
sass_binary(
261259
deps = deps,
262260
include_paths = include_paths + [

tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ licenses(["notice"])
88
tf_sass_binary(
99
name = "debugger_component_style",
1010
src = "debugger_component.scss",
11-
strict_deps = False,
1211
deps = ["//tensorboard/webapp/theme"],
1312
)
1413

tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/views/execution_data/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ licenses(["notice"])
77
tf_sass_binary(
88
name = "execution_data_styles",
99
src = "execution_data_component.scss",
10-
strict_deps = False,
1110
deps = [
1211
"//tensorboard/webapp:angular_material_sass_deps",
1312
"//tensorboard/webapp/theme",

tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/views/graph/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ licenses(["notice"])
77
tf_sass_binary(
88
name = "graph_styles",
99
src = "graph_component.scss",
10-
strict_deps = False,
1110
deps = [
1211
"//tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/views/common:style_lib",
1312
"//tensorboard/webapp/theme",

tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/views/graph_executions/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ licenses(["notice"])
77
tf_sass_binary(
88
name = "graph_executions_styles",
99
src = "graph_executions_component.scss",
10-
strict_deps = False,
1110
deps = [
1211
"//tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/views/common:style_lib",
1312
"//tensorboard/webapp/theme",

tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/views/source_files/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ licenses(["notice"])
77
tf_sass_binary(
88
name = "source_files_component_style",
99
src = "source_files_component.scss",
10-
strict_deps = False,
1110
deps = ["//tensorboard/webapp/theme"],
1211
)
1312

tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/views/stack_trace/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ licenses(["notice"])
77
tf_sass_binary(
88
name = "stack_trace_styles",
99
src = "stack_trace_component.scss",
10-
strict_deps = False,
1110
deps = [
1211
"//tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/views/common:style_lib",
1312
"//tensorboard/webapp/theme",

tensorboard/webapp/BUILD

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ tf_ts_library(
8888
tf_sass_binary(
8989
name = "app_styles",
9090
src = "app_container.scss",
91-
strict_deps = False,
9291
deps = ["//tensorboard/webapp/theme"],
9392
)
9493

@@ -385,6 +384,5 @@ tf_external_sass_libray(
385384
tf_sass_binary(
386385
name = "styles",
387386
src = "styles.scss",
388-
strict_deps = False,
389387
deps = ["//tensorboard/webapp/theme"],
390388
)

tensorboard/webapp/core/views/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ package(default_visibility = ["//tensorboard:internal"])
55
tf_sass_binary(
66
name = "layout_styles",
77
src = "layout_container.scss",
8-
strict_deps = False,
98
deps = ["//tensorboard/webapp/theme"],
109
)
1110

tensorboard/webapp/feature_flag/views/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ licenses(["notice"])
77
tf_sass_binary(
88
name = "style",
99
src = "feature_flag_dialog_component.scss",
10-
strict_deps = False,
1110
deps = [
1211
"//tensorboard/webapp:angular_material_sass_deps",
1312
"//tensorboard/webapp/theme",

0 commit comments

Comments
 (0)