github.com/gnattishness/bazel-go-ethereum@v0.0.0-20190929123618-7022a154f56d/core/asm/BUILD.bazel (about)

     1  load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2  
     3  go_library(
     4      name = "go_default_library",
     5      srcs = [
     6          "asm.go",
     7          "compiler.go",
     8          "lexer.go",
     9      ],
    10      importpath = "github.com/ethereum/go-ethereum/core/asm",
    11      visibility = ["//visibility:public"],
    12      deps = [
    13          "//common/math:go_default_library",
    14          "//core/vm:go_default_library",
    15      ],
    16  )
    17  
    18  go_test(
    19      name = "go_default_test",
    20      srcs = [
    21          "asm_test.go",
    22          "lex_test.go",
    23      ],
    24      embed = [":go_default_library"],
    25  )