Skip to content

Commit f5328d5

Browse files
authored
chore: remove unused pugixml dependency (#100)
1 parent a4ef88f commit f5328d5

File tree

4 files changed

+0
-52
lines changed

4 files changed

+0
-52
lines changed

bazel/development2.bzl

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414

1515
"""Load dependencies needed for google-cloud-cpp development / Phase 2."""
1616

17-
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
18-
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
19-
2017
def gl_cpp_development2(name = None):
2118
"""Loads dependencies needed to develop the google-cloud-cpp libraries.
2219
@@ -27,16 +24,3 @@ def gl_cpp_development2(name = None):
2724
name: Unused. It is conventional to provide a `name` argument to all
2825
workspace functions.
2926
"""
30-
31-
# An XML parser and generator, this is only used in //docfx.
32-
# This is an internal tool used to generate the reference documentation.
33-
maybe(
34-
http_archive,
35-
name = "com_github_zeux_pugixml",
36-
urls = [
37-
"https://github.com/zeux/pugixml/archive/v1.14.tar.gz",
38-
],
39-
sha256 = "610f98375424b5614754a6f34a491adbddaaec074e9044577d965160ec103d2e",
40-
strip_prefix = "pugixml-1.14",
41-
build_file = Label("//bazel:pugixml.BUILD"),
42-
)

bazel/pugixml.BUILD

Lines changed: 0 additions & 30 deletions
This file was deleted.

ci/cloudbuild/dockerfiles/fedora-latest-cmake-gcc.Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ RUN dnf makecache && dnf install -y java-latest-openjdk
3939
RUN dnf makecache && dnf install -y "dnf-command(debuginfo-install)"
4040
RUN dnf makecache && dnf debuginfo-install -y libstdc++
4141

42-
# These are used by the docfx tool.
43-
RUN dnf makecache && dnf install -y pugixml-devel yaml-cpp-devel
44-
4542
# Sets root's password to the empty string to enable users to get a root shell
4643
# inside the container with `su -` and no password. Sudo would not work because
4744
# we run these containers as the invoking user's uid, which does not exist in

ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ RUN dnf makecache && dnf install -y java-latest-openjdk
3939
RUN dnf makecache && dnf install -y "dnf-command(debuginfo-install)"
4040
RUN dnf makecache && dnf debuginfo-install -y libstdc++
4141

42-
# These are used by the docfx tool.
43-
RUN dnf makecache && dnf install -y pugixml-devel yaml-cpp-devel
44-
4542
# Sets root's password to the empty string to enable users to get a root shell
4643
# inside the container with `su -` and no password. Sudo would not work because
4744
# we run these containers as the invoking user's uid, which does not exist in

0 commit comments

Comments
 (0)