Skip to content

Instantly share code, notes, and snippets.

@ivelin
Last active June 18, 2019 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivelin/4937fd123d23527fa689798c601c670d to your computer and use it in GitHub Desktop.
Save ivelin/4937fd123d23527fa689798c601c670d to your computer and use it in GitHub Desktop.
tensorflow_io/pcap/BUILD
licenses(["notice"]) # Apache 2.0
package(default_visibility = ["//visibility:public"])
cc_binary(
name = "python/ops/_pcap_ops.so",
srcs = [
"kernels/pcap_input.cc",
"ops/pcap_ops.cc",
],
copts = [
"-pthread",
"-std=c++11",
"-DNDEBUG",
],
linkshared = 1,
deps = [
"//tensorflow_io/core:dataset_ops",
"@local_config_tf//:libtensorflow_framework",
"@local_config_tf//:tf_header_lib",
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment