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 5# Bazel (http://bazel.io/) WORKSPACE file for RE2. 6 7workspace(name = "com_googlesource_code_re2") 8 9load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") 10 11http_archive( 12 name = "rules_cc", 13 strip_prefix = "rules_cc-master", 14 urls = ["https://github.com/bazelbuild/rules_cc/archive/master.zip"], 15) 16