| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package(
- default_visibility = ["//visibility:public"],
- features = ["-layering_check"],
- )
- cc_library(
- name = "mock_component",
- testonly = True,
- hdrs = ["mock_component.h"],
- deps = [
- "//dragnn/components/util:bulk_feature_extractor",
- "//dragnn/core:index_translator",
- "//dragnn/core/interfaces:component",
- "//dragnn/core/interfaces:transition_state",
- "//dragnn/protos:data_proto",
- "//dragnn/protos:spec_proto",
- "//syntaxnet:base",
- "//syntaxnet:test_main",
- ],
- )
- cc_library(
- name = "mock_compute_session",
- testonly = True,
- hdrs = ["mock_compute_session.h"],
- deps = [
- "//dragnn/components/util:bulk_feature_extractor",
- "//dragnn/core:compute_session",
- "//dragnn/protos:data_proto",
- "//dragnn/protos:spec_proto",
- "//syntaxnet:base",
- "//syntaxnet:test_main",
- ],
- )
- cc_library(
- name = "mock_transition_state",
- testonly = True,
- hdrs = ["mock_transition_state.h"],
- deps = [
- "//dragnn/core/interfaces:transition_state",
- "//syntaxnet:base",
- "//syntaxnet:test_main",
- ],
- )
- cc_library(
- name = "generic",
- testonly = True,
- srcs = ["generic.cc"],
- hdrs = ["generic.h"],
- deps = [
- "//syntaxnet:base",
- "//syntaxnet:test_main",
- ],
- )
|