Skip to content

Commit b01902f

Browse files
Merge pull request #451 from envoyproxy/auto-merge-release-v1-34
auto-merge envoyproxy/envoy[release/v1.34] into envoyproxy/envoy-openssl[release/v1.34]
2 parents ff2e398 + e0da6d9 commit b01902f

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.bazelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ build:linux --action_env=BAZEL_LINKOPTS=-lm
8080
build --define absl=1
8181

8282
# Disable ICU linking for googleurl.
83-
build --@com_googlesource_googleurl//build_config:system_icu=0
83+
build --@googleurl//build_config:system_icu=0
8484

8585
# Common flags for sanitizers
8686
build:sanitizer --define tcmalloc=disabled

bazel/external/quiche.BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4652,7 +4652,7 @@ envoy_quiche_platform_impl_cc_library(
46524652
"quiche/common/platform/default/quiche_platform_impl/quiche_googleurl_impl.h",
46534653
],
46544654
deps = [
4655-
"@com_googlesource_googleurl//url",
4655+
"@googleurl//url",
46564656
],
46574657
)
46584658

bazel/repositories.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def envoy_dependencies(skip_targets = []):
193193
_intel_ittapi()
194194
_com_googlesource_chromium_base_trace_event_common()
195195
_com_github_google_quiche()
196-
_com_googlesource_googleurl()
196+
_googleurl()
197197
_io_hyperscan()
198198
_io_vectorscan()
199199
_io_opentelemetry_api_cpp()
@@ -780,9 +780,9 @@ def _com_github_google_quiche():
780780
patch_args = ["-p1"],
781781
)
782782

783-
def _com_googlesource_googleurl():
783+
def _googleurl():
784784
external_http_archive(
785-
name = "com_googlesource_googleurl",
785+
name = "googleurl",
786786
patches = ["@envoy//bazel/external:googleurl.patch"],
787787
patch_args = ["-p1"],
788788
)

bazel/repository_locations.bzl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1264,20 +1264,20 @@ REPOSITORY_LOCATIONS_SPEC = dict(
12641264
license = "BSD-3-Clause",
12651265
license_url = "https://github.com/google/quiche/blob/{version}/LICENSE",
12661266
),
1267-
com_googlesource_googleurl = dict(
1267+
googleurl = dict(
12681268
project_name = "Chrome URL parsing library",
12691269
project_desc = "Chrome URL parsing library",
1270-
project_url = "https://quiche.googlesource.com/googleurl",
1270+
project_url = "https://github.com/google/gurl",
12711271
version = "dd4080fec0b443296c0ed0036e1e776df8813aa7",
1272-
sha256 = "fc694942e8a7491dcc1dde1bddf48a31370a1f46fef862bc17acf07c34dc6325",
1273-
# Static snapshot of https://quiche.googlesource.com/googleurl/+archive/dd4080fec0b443296c0ed0036e1e776df8813aa7.tar.gz
1274-
urls = ["https://storage.googleapis.com/quiche-envoy-integration/{version}.tar.gz"],
1272+
sha256 = "4ffa45a827646692e7b26e2a8c0dcbc1b1763a26def2fbbd82362970962a2fcf",
1273+
urls = ["https://github.com/google/gurl/archive/{version}.tar.gz"],
1274+
strip_prefix = "gurl-{version}",
12751275
use_category = ["controlplane", "dataplane_core"],
12761276
extensions = [],
12771277
release_date = "2022-11-03",
12781278
cpe = "N/A",
1279-
license = "googleurl",
1280-
license_url = "https://quiche.googlesource.com/googleurl/+/{version}/LICENSE",
1279+
license = "BSD-3-Clause",
1280+
license_url = "https://github.com/google/gurl/blob/{version}/LICENSE",
12811281
),
12821282
com_google_cel_cpp = dict(
12831283
project_name = "Common Expression Language (CEL) C++ library",

source/common/http/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ envoy_cc_library(
588588
"//source/common/common:logger_lib",
589589
"//source/common/runtime:runtime_features_lib",
590590
"@com_google_absl//absl/types:optional",
591-
"@com_googlesource_googleurl//url",
591+
"@googleurl//url",
592592
],
593593
)
594594

0 commit comments

Comments
 (0)