BUILD 835 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package(
  2. default_visibility = ["//visibility:public"],
  3. features = ["-layering_check"],
  4. )
  5. cc_library(
  6. name = "cloneable_transition_state",
  7. hdrs = ["cloneable_transition_state.h"],
  8. deps = [":transition_state"],
  9. )
  10. cc_library(
  11. name = "component",
  12. hdrs = ["component.h"],
  13. deps = [
  14. ":transition_state",
  15. "//dragnn/components/util:bulk_feature_extractor",
  16. "//dragnn/core:input_batch_cache",
  17. "//dragnn/protos:spec_proto",
  18. "//dragnn/protos:trace_proto",
  19. "//syntaxnet:base",
  20. "//syntaxnet:registry",
  21. ],
  22. )
  23. cc_library(
  24. name = "input_batch",
  25. hdrs = ["input_batch.h"],
  26. deps = [
  27. "//syntaxnet:base",
  28. ],
  29. )
  30. cc_library(
  31. name = "transition_state",
  32. hdrs = ["transition_state.h"],
  33. deps = [
  34. "//syntaxnet:base",
  35. ],
  36. )