BUILD 792 B

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