-
Notifications
You must be signed in to change notification settings - Fork 110
/
WORKSPACE.bazel
53 lines (38 loc) · 1.63 KB
/
WORKSPACE.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
workspace(name = "hw")
# Add the necessary Starlark functions to fetch google-cloud-cpp.
# [START cpp_setup_bazel_download]
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "google_cloud_cpp",
sha256 = "db69dd73ef4af8b2e816d80ded04950036d0e0dccc274f8c3d3ed1d7f5692a1b",
strip_prefix = "google-cloud-cpp-2.32.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.32.0.tar.gz",
)
# [END cpp_setup_bazel_download]
# [START cpp_setup_bazel_recurse]
load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
gl_cpp_workspace0()
load("@google_cloud_cpp//bazel:workspace1.bzl", "gl_cpp_workspace1")
gl_cpp_workspace1()
load("@google_cloud_cpp//bazel:workspace2.bzl", "gl_cpp_workspace2")
gl_cpp_workspace2()
load("@google_cloud_cpp//bazel:workspace3.bzl", "gl_cpp_workspace3")
gl_cpp_workspace3()
load("@google_cloud_cpp//bazel:workspace4.bzl", "gl_cpp_workspace4")
gl_cpp_workspace4()
load("@google_cloud_cpp//bazel:workspace5.bzl", "gl_cpp_workspace5")
gl_cpp_workspace5()
# [END cpp_setup_bazel_recurse]