Skip to content

Commit e334636

Browse files
Merge pull request #452 from envoyproxy/auto-merge-release-v1-35
auto-merge envoyproxy/envoy[release/v1.35] into envoyproxy/envoy-openssl[release/v1.35]
2 parents 2f89cd3 + 181657d commit e334636

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
@@ -82,7 +82,7 @@ build:linux --action_env=BAZEL_LINKOPTS=-lm:-fuse-ld=gold
8282
build --define absl=1
8383

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

8787
# Common flags for sanitizers
8888
build:sanitizer --define tcmalloc=disabled

bazel/external/quiche.BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4706,7 +4706,7 @@ envoy_quiche_platform_impl_cc_library(
47064706
"quiche/common/platform/default/quiche_platform_impl/quiche_googleurl_impl.h",
47074707
],
47084708
deps = [
4709-
"@com_googlesource_googleurl//url",
4709+
"@googleurl//url",
47104710
],
47114711
)
47124712

bazel/repositories.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def envoy_dependencies(skip_targets = []):
197197
_simdutf()
198198
_intel_ittapi()
199199
_com_github_google_quiche()
200-
_com_googlesource_googleurl()
200+
_googleurl()
201201
_io_hyperscan()
202202
_io_vectorscan()
203203
_io_opentelemetry_api_cpp()
@@ -793,9 +793,9 @@ def _com_github_google_quiche():
793793
patch_args = ["-p1"],
794794
)
795795

796-
def _com_googlesource_googleurl():
796+
def _googleurl():
797797
external_http_archive(
798-
name = "com_googlesource_googleurl",
798+
name = "googleurl",
799799
patches = ["@envoy//bazel/external:googleurl.patch"],
800800
patch_args = ["-p1"],
801801
)

bazel/repository_locations.bzl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1313,20 +1313,20 @@ REPOSITORY_LOCATIONS_SPEC = dict(
13131313
license = "BSD-3-Clause",
13141314
license_url = "https://github.com/google/quiche/blob/{version}/LICENSE",
13151315
),
1316-
com_googlesource_googleurl = dict(
1316+
googleurl = dict(
13171317
project_name = "Chrome URL parsing library",
13181318
project_desc = "Chrome URL parsing library",
1319-
project_url = "https://quiche.googlesource.com/googleurl",
1319+
project_url = "https://github.com/google/gurl",
13201320
version = "dd4080fec0b443296c0ed0036e1e776df8813aa7",
1321-
sha256 = "fc694942e8a7491dcc1dde1bddf48a31370a1f46fef862bc17acf07c34dc6325",
1322-
# Static snapshot of https://quiche.googlesource.com/googleurl/+archive/dd4080fec0b443296c0ed0036e1e776df8813aa7.tar.gz
1323-
urls = ["https://storage.googleapis.com/quiche-envoy-integration/{version}.tar.gz"],
1321+
sha256 = "4ffa45a827646692e7b26e2a8c0dcbc1b1763a26def2fbbd82362970962a2fcf",
1322+
urls = ["https://github.com/google/gurl/archive/{version}.tar.gz"],
1323+
strip_prefix = "gurl-{version}",
13241324
use_category = ["controlplane", "dataplane_core"],
13251325
extensions = [],
13261326
release_date = "2022-11-03",
13271327
cpe = "N/A",
1328-
license = "googleurl",
1329-
license_url = "https://quiche.googlesource.com/googleurl/+/{version}/LICENSE",
1328+
license = "BSD-3-Clause",
1329+
license_url = "https://github.com/google/gurl/blob/{version}/LICENSE",
13301330
),
13311331
com_google_cel_cpp = dict(
13321332
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
@@ -589,7 +589,7 @@ envoy_cc_library(
589589
"//source/common/common:logger_lib",
590590
"//source/common/runtime:runtime_features_lib",
591591
"@com_google_absl//absl/types:optional",
592-
"@com_googlesource_googleurl//url",
592+
"@googleurl//url",
593593
],
594594
)
595595

0 commit comments

Comments
 (0)