Skip to content

Commit

Permalink
Update BUILD.bazel load order
Browse files Browse the repository at this point in the history
  • Loading branch information
olehkuznetsov committed Aug 12, 2024
1 parent 3148803 commit af7b9ba
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@

# Root BUILD file for Android GPU Inspector.

load("@bazel_gazelle//:def.bzl", "gazelle")
load("//tools/build:rules.bzl", "copy_to", "copy_tree")

licenses(["notice"]) # Apache 2.0

exports_files(["LICENSE"])

load("@bazel_gazelle//:def.bzl", "gazelle")
load("//tools/build:rules.bzl", "copy_to", "copy_tree")

# gazelle:prefix github.com/google/gapid
# gazelle:resolve go go protos/perfetto/common //tools/build/third_party/perfetto:common_go_proto
# gazelle:resolve go go protos/perfetto/config //tools/build/third_party/perfetto:config_go_proto
Expand Down
2 changes: 1 addition & 1 deletion cmd/enum_lookup/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("//tools/build:rules.bzl", "apic_template", "go_stripped_binary")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//tools/build:rules.bzl", "apic_template", "go_stripped_binary")

apic_template(
name = "vulkan_lookup",
Expand Down
2 changes: 1 addition & 1 deletion cmd/gapis/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("//tools/build:rules.bzl", "go_stripped_binary")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//tools/build:rules.bzl", "go_stripped_binary")

go_library(
name = "go_default_library",
Expand Down
2 changes: 1 addition & 1 deletion cmd/gapit/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("//tools/build:rules.bzl", "go_stripped_binary")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//tools/build:rules.bzl", "go_stripped_binary")

go_library(
name = "go_default_library",
Expand Down
2 changes: 1 addition & 1 deletion cmd/img2h/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("//tools/build:rules.bzl", "go_stripped_binary")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//tools/build:rules.bzl", "go_stripped_binary")

go_library(
name = "go_default_library",
Expand Down
2 changes: 1 addition & 1 deletion cmd/perfetto/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("//tools/build:rules.bzl", "go_stripped_binary")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//tools/build:rules.bzl", "go_stripped_binary")

go_library(
name = "go_default_library",
Expand Down
2 changes: 1 addition & 1 deletion gapis/api/vulkan/vulkan_pb/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
load("@rules_proto//proto:defs.bzl", "proto_library")
load("//tools/build:rules.bzl", "apic_template")

Expand Down
2 changes: 1 addition & 1 deletion gapis/perfetto/service/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
load("@rules_proto//proto:defs.bzl", "proto_library")

go_library(
Expand Down

0 comments on commit af7b9ba

Please sign in to comment.