Skip to content

Commit 8b7e32c

Browse files
Googlercopybara-github
authored andcommitted
Automatic code cleanup.
PiperOrigin-RevId: 784455034
1 parent 90465e1 commit 8b7e32c

File tree

9 files changed

+12
-0
lines changed
  • aspect/testing/tests/src/com/google/idea/blaze/aspect
  • querysync/javatests/com/google/idea/blaze/qsync/testdata

9 files changed

+12
-0
lines changed

aspect/testing/tests/src/com/google/idea/blaze/aspect/cpp/ccbinary/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ load(
33
"//aspect/testing/rules:intellij_aspect_test_fixture.bzl",
44
"intellij_aspect_test_fixture",
55
)
6+
load("//third_party/bazel_rules/rules_cc/cc:cc_binary.bzl", "cc_binary")
67

78
licenses(["notice"])
89

aspect/testing/tests/src/com/google/idea/blaze/aspect/cpp/cclibrary/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ load(
33
"//aspect/testing/rules:intellij_aspect_test_fixture.bzl",
44
"intellij_aspect_test_fixture",
55
)
6+
load("//third_party/bazel_rules/rules_cc/cc:cc_library.bzl", "cc_library")
67

78
licenses(["notice"])
89

aspect/testing/tests/src/com/google/idea/blaze/aspect/cpp/cctest/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ load(
33
"//aspect/testing/rules:intellij_aspect_test_fixture.bzl",
44
"intellij_aspect_test_fixture",
55
)
6+
load("//third_party/bazel_rules/rules_cc/cc:cc_test.bzl", "cc_test")
67

78
licenses(["notice"])
89

aspect/testing/tests/src/com/google/idea/blaze/aspect/cpp/cctoolchain/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ load(
33
"//aspect/testing/rules:intellij_aspect_test_fixture.bzl",
44
"intellij_aspect_test_fixture",
55
)
6+
load("//third_party/bazel_rules/rules_cc/cc:cc_library.bzl", "cc_library")
67

78
licenses(["notice"])
89

aspect/testing/tests/src/com/google/idea/blaze/aspect/cpp/coptsmakevars/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ load(
33
"//aspect/testing/rules:intellij_aspect_test_fixture.bzl",
44
"intellij_aspect_test_fixture",
55
)
6+
load("//third_party/bazel_rules/rules_cc/cc:cc_binary.bzl", "cc_binary")
67

78
licenses(["notice"])
89

aspect/testing/tests/src/com/google/idea/blaze/aspect/java/javatest/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ load(
77
"//aspect/testing/rules:intellij_aspect_test_fixture.bzl",
88
"intellij_aspect_test_fixture",
99
)
10+
load("//third_party/bazel_rules/rules_cc/cc:cc_binary.bzl", "cc_binary")
1011

1112
licenses(["notice"])
1213

querysync/javatests/com/google/idea/blaze/qsync/testdata/cc/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("//third_party/bazel_rules/rules_cc/cc:cc_library.bzl", "cc_library")
2+
13
cc_library(
24
name = "cc",
35
srcs = ["TestClass.cc"],

querysync/javatests/com/google/idea/blaze/qsync/testdata/cc_externaldep/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("//third_party/bazel_rules/rules_cc/cc:cc_library.bzl", "cc_library")
2+
13
cc_library(
24
name = "cc_externaldep",
35
srcs = ["TestClass.cc"],

querysync/javatests/com/google/idea/blaze/qsync/testdata/cc_multisrc/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("//third_party/bazel_rules/rules_cc/cc:cc_library.bzl", "cc_library")
2+
13
cc_library(
24
name = "testclass",
35
srcs = [

0 commit comments

Comments
 (0)