summaryrefslogtreecommitdiff
path: root/chromium/third_party/skia/bazel/rbe/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/skia/bazel/rbe/BUILD.bazel')
-rw-r--r--chromium/third_party/skia/bazel/rbe/BUILD.bazel12
1 files changed, 9 insertions, 3 deletions
diff --git a/chromium/third_party/skia/bazel/rbe/BUILD.bazel b/chromium/third_party/skia/bazel/rbe/BUILD.bazel
index 79c2312fb07..dfa5b4de238 100644
--- a/chromium/third_party/skia/bazel/rbe/BUILD.bazel
+++ b/chromium/third_party/skia/bazel/rbe/BUILD.bazel
@@ -3,12 +3,19 @@ load("@bazel_toolchains//rules/exec_properties:exec_properties.bzl", "create_rbe
licenses(["notice"])
+# This platform describes our Linux RBE environment. The machines (aka workers) have x64 cpus
+# and will use the specified Docker container, which is (Debian) Linux and has Clang in it.
+#
+# exec_properties specify some information that is passed along the Remote Execution API (REAPI)
+# to the dispatcher which will use it to direct the request to the appropriate machine/worker,
+# using the Remote Worker API (RWAPI).
# https://bazel.build/docs/platforms
+# http://go/skolo-rbe
platform(
name = "gce_linux_platform",
constraint_values = [
- "@bazel_tools//platforms:linux",
- "@bazel_tools//platforms:x86_64",
+ "@platforms//os:linux",
+ "@platforms//cpu:x86_64",
"@bazel_tools//tools/cpp:clang",
],
exec_properties = create_rbe_exec_properties_dict(
@@ -16,5 +23,4 @@ platform(
os_family = "Linux",
pool = "gce_linux",
),
- parents = ["@local_config_platform//:host"],
)