Skip to content

Commit

Permalink
Fix BUILD files
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorcloudy committed Jan 29, 2025
1 parent 020a1b7 commit e8fb212
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/remotebuildexecution/hello_world/cc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("@rules_cc//cc:cc_test.bzl", "cc_test")

package(default_visibility = ["//visibility:public"])

cc_library(
Expand Down
2 changes: 2 additions & 0 deletions examples/remotebuildexecution/hello_world/java/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("@rules_java//java:java_binary.bzl", "java_binary")

java_binary(
name = "hello_java",
srcs = ["HelloWorld.java"],
Expand Down
3 changes: 3 additions & 0 deletions examples/remotebuildexecution/rbe_system_check/cc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
load("@rules_cc//cc:cc_test.bzl", "cc_test")

package(default_visibility = ["//visibility:public"])

cc_binary(
Expand Down

0 comments on commit e8fb212

Please sign in to comment.