diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-02-10 11:01:08 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-02-10 11:01:08 -0800 |
commit | a03b40ca17f7c84ab11b1c47c054d28fdfcea4ce (patch) | |
tree | 58e8d2016cb955fe3e1df88baf479538f2d7c7b1 /pkg/cpuid/BUILD | |
parent | 223931da847f0ad25b44e18fb59da3391d028139 (diff) | |
parent | 9cbf5a3dcc71d85cd857f117d4b7189a101be9c1 (diff) |
Merge pull request #1453 from xiaobo55x:cpuid
PiperOrigin-RevId: 294257911
Diffstat (limited to 'pkg/cpuid/BUILD')
-rw-r--r-- | pkg/cpuid/BUILD | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/pkg/cpuid/BUILD b/pkg/cpuid/BUILD index 43a432190..d6cb1a549 100644 --- a/pkg/cpuid/BUILD +++ b/pkg/cpuid/BUILD @@ -7,6 +7,8 @@ go_library( srcs = [ "cpu_amd64.s", "cpuid.go", + "cpuid_arm64.go", + "cpuid_x86.go", ], visibility = ["//:sandbox"], deps = ["//pkg/log"], @@ -15,7 +17,10 @@ go_library( go_test( name = "cpuid_test", size = "small", - srcs = ["cpuid_test.go"], + srcs = [ + "cpuid_arm64_test.go", + "cpuid_x86_test.go", + ], library = ":cpuid", ) @@ -23,7 +28,7 @@ go_test( name = "cpuid_parse_test", size = "small", srcs = [ - "cpuid_parse_test.go", + "cpuid_parse_x86_test.go", ], library = ":cpuid", tags = ["manual"], |