Commit b9108088 authored by Zhang, Shiyu's avatar Zhang, Shiyu Committed by Commit Bot

Use absolute path for ittapi libs to support usage in Chrome

Contributed by fanchen.kong@intel.com

Change-Id: I99f2360ba1b064577c6891a161fd62114cce7a3f
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1975341Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#65513}
parent ca9f4dab
......@@ -6,8 +6,8 @@ import("//build/toolchain/toolchain.gni")
config("vtune_ittapi") {
include_dirs = [
"../../../third_party/ittapi/include",
"../../../third_party/ittapi/src/ittnotify",
"//third_party/ittapi/include",
"//third_party/ittapi/src/ittnotify",
]
}
......@@ -28,7 +28,7 @@ static_library("v8_vtune") {
static_library("v8_vtune_trace_mark") {
sources = [
"../../../third_party/ittapi/include/ittnotify.h",
"//third_party/ittapi/include/ittnotify.h",
"vtuneapi.cc",
"vtuneapi.h",
]
......@@ -39,13 +39,13 @@ static_library("v8_vtune_trace_mark") {
static_library("ittnotify") {
sources = [
"../../../third_party/ittapi/include/ittnotify.h",
"../../../third_party/ittapi/include/legacy/ittnotify.h",
"../../../third_party/ittapi/src/ittnotify/disable-warnings.h",
"../../../third_party/ittapi/src/ittnotify/ittnotify_config.h",
"../../../third_party/ittapi/src/ittnotify/ittnotify_static.c",
"../../../third_party/ittapi/src/ittnotify/ittnotify_static.h",
"//third_party/ittapi/include/ittnotify.h",
"//third_party/ittapi/include/legacy/ittnotify.h",
"//third_party/ittapi/src/ittnotify/disable-warnings.h",
"//third_party/ittapi/src/ittnotify/ittnotify_config.h",
"//third_party/ittapi/src/ittnotify/ittnotify_static.c",
"//third_party/ittapi/src/ittnotify/ittnotify_static.h",
]
include_dirs = [ "../../../third_party/ittapi/include" ]
include_dirs = [ "//third_party/ittapi/include" ]
deps = []
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment