BUILD 352 B

123456789101112131415161718
  1. # Copyright The OpenTelemetry Authors
  2. # SPDX-License-Identifier: Apache-2.0
  3. cc_binary(
  4. name = "example_etw_threads",
  5. srcs = [
  6. "main.cc",
  7. ],
  8. tags = [
  9. "etw",
  10. "examples",
  11. ],
  12. target_compatible_with = ["@platforms//os:windows"],
  13. deps = [
  14. "//api",
  15. "//exporters/etw:etw_exporter",
  16. ],
  17. )