summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorBrad Burlage <brb@google.com>2020-02-10 11:57:31 -0800
committergVisor bot <gvisor-bot@google.com>2020-02-10 12:00:46 -0800
commit20840bfec087d45853e81d1ac34940f3b2fb920a (patch)
tree5caa60e83f876732189bc5e394c4079fae0edd20 /tools
parent0efa8168c7c04ec0a4bd62e2d2eb8718b5d72ea7 (diff)
Move x86 state definition to its own file.
PiperOrigin-RevId: 294271541
Diffstat (limited to 'tools')
-rw-r--r--tools/build/tags.bzl24
1 files changed, 12 insertions, 12 deletions
diff --git a/tools/build/tags.bzl b/tools/build/tags.bzl
index a6db44e47..558fb53ae 100644
--- a/tools/build/tags.bzl
+++ b/tools/build/tags.bzl
@@ -3,22 +3,28 @@
go_suffixes = [
"_386",
"_386_unsafe",
- "_amd64",
- "_amd64_unsafe",
"_aarch64",
"_aarch64_unsafe",
+ "_amd64",
+ "_amd64_unsafe",
"_arm",
- "_arm_unsafe",
"_arm64",
"_arm64_unsafe",
+ "_arm_unsafe",
+ "_impl",
+ "_impl_unsafe",
+ "_linux",
+ "_linux_unsafe",
"_mips",
- "_mips_unsafe",
- "_mipsle",
- "_mipsle_unsafe",
"_mips64",
"_mips64_unsafe",
"_mips64le",
"_mips64le_unsafe",
+ "_mips_unsafe",
+ "_mipsle",
+ "_mipsle_unsafe",
+ "_opts",
+ "_opts_unsafe",
"_ppc64",
"_ppc64_unsafe",
"_ppc64le",
@@ -31,10 +37,4 @@ go_suffixes = [
"_sparc64_unsafe",
"_wasm",
"_wasm_unsafe",
- "_linux",
- "_linux_unsafe",
- "_opts",
- "_opts_unsafe",
- "_impl",
- "_impl_unsafe",
]