summaryrefslogtreecommitdiffstats
path: root/chromium/v8/bazel/BUILD.ittapi
blob: 5bc1d2bd07edce48bc0d6e9356da34f632d3257e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cc_library(
    name = "lib_ittapi",
    srcs = [
        "third_party/ittapi/include/ittnotify.h",
        "third_party/ittapi/include/jitprofiling.h",
        "third_party/ittapi/src/ittnotify/ittnotify_config.h",
        "third_party/ittapi/src/ittnotify/jitprofiling.c",
    ],
    hdrs = [
        "third_party/ittapi/include/ittnotify.h",
        "third_party/ittapi/src/ittnotify/ittnotify_types.h",
    ],
    copts = ["-Iexternal/intel_ittapi/third_party/ittapi/include"],
    visibility = ["//visibility:public"],
)