Skip to content

Commit b2cb9cb

Browse files
committed
deps: Rm unused intel_ittapi
Signed-off-by: Ryan Northey <[email protected]>
1 parent c97cd05 commit b2cb9cb

File tree

4 files changed

+19
-41
lines changed

4 files changed

+19
-41
lines changed

bazel/external/intel_ittapi.BUILD

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

bazel/repositories.bzl

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@ def envoy_dependencies(skip_targets = []):
192192
_dragonbox()
193193
_fp16()
194194
_simdutf()
195-
_intel_ittapi()
196195
_com_github_google_quiche()
197196
_com_googlesource_googleurl()
198197
_io_hyperscan()
@@ -738,6 +737,7 @@ def _v8():
738737
name = "v8",
739738
patches = [
740739
"@envoy//bazel:v8.patch",
740+
"@envoy//bazel:v8_novtune.patch",
741741
"@envoy//bazel:v8_ppc64le.patch",
742742
],
743743
patch_args = ["-p1"],
@@ -791,12 +791,6 @@ def _simdutf():
791791
build_file = "@envoy//bazel/external:simdutf.BUILD",
792792
)
793793

794-
def _intel_ittapi():
795-
external_http_archive(
796-
name = "intel_ittapi",
797-
build_file = "@envoy//bazel/external:intel_ittapi.BUILD",
798-
)
799-
800794
def _com_github_google_quiche():
801795
external_http_archive(
802796
name = "com_github_google_quiche",

bazel/repository_locations.bzl

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1260,19 +1260,6 @@ REPOSITORY_LOCATIONS_SPEC = dict(
12601260
release_date = "2025-08-01",
12611261
cpe = "N/A",
12621262
),
1263-
intel_ittapi = dict(
1264-
project_name = "Intel ITT API",
1265-
project_desc = "Intel Instrumentation and Tracing Technology API",
1266-
project_url = "https://github.com/intel/ittapi",
1267-
version = "a3911fff01a775023a06af8754f9ec1e5977dd97",
1268-
sha256 = "1d0dddfc5abb786f2340565c82c6edd1cff10c917616a18ce62ee0b94dbc2ed4",
1269-
urls = ["https://github.com/intel/ittapi/archive/{version}.tar.gz"],
1270-
strip_prefix = "ittapi-{version}",
1271-
use_category = ["dataplane_ext"],
1272-
extensions = ["envoy.wasm.runtime.v8"],
1273-
release_date = "2021-05-25",
1274-
cpe = "N/A",
1275-
),
12761263
com_github_google_quiche = dict(
12771264
project_name = "QUICHE",
12781265
project_desc = "QUICHE (QUIC, HTTP/2, Etc) is Google‘s implementation of QUIC and related protocols",

bazel/v8_novtune.patch

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
diff --git a/BUILD.bazel b/BUILD.bazel
2+
index 3f5a87d054e..740b1f1773b 100644
3+
--- a/BUILD.bazel
4+
+++ b/BUILD.bazel
5+
@@ -4477,12 +4477,7 @@ v8_library(
6+
copts = ["-Wno-implicit-fallthrough"],
7+
strip_include_prefix = "third_party",
8+
visibility = ["//visibility:public"],
9+
- deps = [":noicu/v8"] + select({
10+
- ":is_v8_enable_vtunejit": [
11+
- ":v8_vtune",
12+
- ],
13+
- "//conditions:default": [],
14+
- }),
15+
+ deps = [":noicu/v8"],
16+
)
17+
18+
alias(

0 commit comments

Comments
 (0)