bazel: Remove support for angle bracket includes

Fixes the following error:

fail: attribute includes: './' resolves to the workspace root,
which would allow this rule and all of its transitive dependents
to include any file in your workspace. Please include only what
you need.

Bazel's recommendation [1] is to use double quotes instead of
angle brackets.

[1] https://bazel.build/docs/bazel-and-cpp#include-paths
This commit is contained in:
Marshall Greenblatt
2025-05-13 18:30:37 -04:00
parent 4634b6f0d5
commit 4060fb9c22

View File

@@ -151,8 +151,6 @@ declare_cc_library(
"@platforms//os:windows": [":cef"],
"//conditions:default": None,
}),
# Support <angled> includes.
includes = ["./"],
)
# Only available on MacOS/Windows.