83cee23c98
buildifier --lint=fix -r . Change-Id: I6a41858270d20137978f8271c8f6160b51120777 Bug: skia:12541 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/529751 Reviewed-by: Ben Wagner <bungeman@google.com>
21 lines
776 B
Python
21 lines
776 B
Python
# https://github.com/bazelbuild/bazel-toolchains/blob/master/rules/exec_properties/exec_properties.bzl
|
|
load("@bazel_toolchains//rules/exec_properties:exec_properties.bzl", "create_rbe_exec_properties_dict")
|
|
|
|
licenses(["notice"])
|
|
|
|
# https://bazel.build/docs/platforms
|
|
platform(
|
|
name = "gce_linux_platform",
|
|
constraint_values = [
|
|
"@bazel_tools//platforms:linux",
|
|
"@bazel_tools//platforms:x86_64",
|
|
"@bazel_tools//tools/cpp:clang",
|
|
],
|
|
exec_properties = create_rbe_exec_properties_dict(
|
|
container_image = "docker://gcr.io/skia-public/rbe_linux@sha256:4f7ea556fbf46f65f0c6a2d65144bbcb1139acc78ef19be4bd4b04dcfa623f18",
|
|
os_family = "Linux",
|
|
pool = "gce_linux",
|
|
),
|
|
parents = ["@local_config_platform//:host"],
|
|
)
|