mirror of
https://github.com/zebrajr/tensorflow.git
synced 2026-01-15 12:15:41 +00:00
root of the 3P repository. But BUILD.bazel was also being interpreted by bazel as the BUILD file for the //third_party/name folder, which is wrong. This change renames those files to name.BUILD, a convention already being used by some packages. PiperOrigin-RevId: 409278565 Change-Id: Ib99c3474ec0b20d04cdb9d828f68c8303caec5fe
29 lines
585 B
Plaintext
29 lines
585 B
Plaintext
# Description:
|
|
# OpenCL(TM) API Headers
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files(["LICENSE"])
|
|
|
|
cc_library(
|
|
name = "opencl_headers",
|
|
hdrs = [
|
|
"CL/cl.h",
|
|
"CL/cl_d3d10.h",
|
|
"CL/cl_d3d11.h",
|
|
"CL/cl_dx9_media_sharing.h",
|
|
"CL/cl_egl.h",
|
|
"CL/cl_ext.h",
|
|
"CL/cl_ext_intel.h",
|
|
"CL/cl_gl.h",
|
|
"CL/cl_gl_ext.h",
|
|
"CL/cl_platform.h",
|
|
"CL/cl_va_api_media_sharing_intel.h",
|
|
"CL/cl_version.h",
|
|
"CL/opencl.h",
|
|
],
|
|
includes = ["."],
|
|
)
|