Sha256: f35b7391f26156157be2aa89c5e8b7f08e143bb007e7cc646d85ee1db6918d1a
Contents?: true
Size: 1.66 KB
Versions: 1
Compression:
Stored size: 1.66 KB
Contents
# Copyright 2020 The Mesh Authors. All rights reserved. # Use of this source code is governed by the Apache License, # Version 2.0, that can be found in the LICENSE file. workspace(name = "org_libmesh") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") commit = { "rules_cc": "5cbd3dfbd1613f71ef29bbb7b10310b81e272975", "googletest": "c6e309b268d4fb9138bed7d0f56b7709c29f102f", "benchmark": "15e6dfd7182b74b4fb6860f52fe314d0654307fb", "heap_layers": "08ca96cfe11b1dd1c504fb7be613ad00756d568f", } http_archive( name = "rules_cc", sha256 = "d6775fe03da086dfe47c668f54e77e220aa6e601a66a4517eaf19fa1d9fda309", strip_prefix = "rules_cc-{}".format(commit["rules_cc"]), urls = [ "https://github.com/bazelbuild/rules_cc/archive/{}.zip".format(commit["rules_cc"]), ], ) http_archive( name = "com_google_googletest", sha256 = "ac0b859e4c28af555657c7702523465756eb56f8606bf53e62fd934c86b5fa5f", strip_prefix = "googletest-{}".format(commit["googletest"]), urls = [ "https://github.com/google/googletest/archive/{}.zip".format(commit["googletest"]), ], ) http_archive( name = "com_google_benchmark", # sha256 = "", strip_prefix = "benchmark-{}".format(commit["benchmark"]), urls = [ "https://github.com/google/benchmark/archive/{}.zip".format(commit["benchmark"]), ], ) http_archive( name = "org_heaplayers", sha256 = "c8a9f7589e13112515ba1ac8647b4e80462f18a6773f7f5f132a7d7602fe2aec", strip_prefix = "Heap-Layers-{}".format(commit["heap_layers"]), urls = [ "https://github.com/emeryberger/Heap-Layers/archive/{}.zip".format(commit["heap_layers"]), ], )
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mesh-rb-0.0.1 | ext/mesh/mesh/WORKSPACE |