Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bazel: Support header_modules, layering_check and parse_headers #277

Merged
merged 1 commit into from
Oct 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.

package(
features = [
"header_modules",
"layering_check",
"parse_headers",
],
)

licenses(["notice"])

### libraries
Expand Down Expand Up @@ -74,6 +82,7 @@ cc_test(
srcs = ["src/civil_time_test.cc"],
deps = [
":civil_time",
"@com_google_googletest//:gtest",
"@com_google_googletest//:gtest_main",
],
)
Expand All @@ -85,6 +94,7 @@ cc_test(
deps = [
":civil_time",
":time_zone",
"@com_google_googletest//:gtest",
"@com_google_googletest//:gtest_main",
],
)
Expand All @@ -96,6 +106,7 @@ cc_test(
deps = [
":civil_time",
":time_zone",
"@com_google_googletest//:gtest",
"@com_google_googletest//:gtest_main",
],
)
Expand Down