WORKSPACE 475 B

123456789101112131415
  1. # Copyright 2009 The RE2 Authors. All Rights Reserved.
  2. # Use of this source code is governed by a BSD-style
  3. # license that can be found in the LICENSE file.
  4. # Bazel (http://bazel.io/) WORKSPACE file for RE2.
  5. workspace(name = "com_googlesource_code_re2")
  6. load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
  7. http_archive(
  8. name = "rules_cc",
  9. strip_prefix = "rules_cc-main",
  10. urls = ["https://github.com/bazelbuild/rules_cc/archive/main.zip"],
  11. )