| 1234567891011121314151617181920212223242526272829303132333435363738 |
- # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- # Exceptions. See /LICENSE for license information.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- # The filegroups establishing root rules for `genquery` invocations can be
- # updated by running:
- #
- # ```
- # ./bazel/check_deps/update_roots.py
- # ```
- filegroup(
- name = "non_test_cc_rules",
- data = [
- "//explorer",
- "//installers/local:carbon",
- "//migrate_cpp:rewriter",
- "//migrate_cpp/cpp_refactoring",
- "//toolchain/diagnostics:null_diagnostics",
- "//toolchain/driver:carbon",
- ],
- )
- genquery(
- name = "non_test_cc_deps.txt",
- expression = "kind('cc.* rule', deps(//bazel/check_deps:non_test_cc_rules))",
- opts = [
- "--notool_deps",
- "--noimplicit_deps",
- ],
- scope = [":non_test_cc_rules"],
- )
- py_test(
- name = "check_non_test_cc_deps",
- srcs = ["check_non_test_cc_deps.py"],
- data = [":non_test_cc_deps.txt"],
- main = "check_non_test_cc_deps.py",
- )
|