bazel: fix remove of routing_flags

This commit is contained in:
Corentin Le Molgat
2023-10-04 13:47:21 +02:00
parent e784010e83
commit 265fecb122
6 changed files with 0 additions and 39 deletions

View File

@@ -271,26 +271,6 @@ cc_library(
],
)
cc_library(
name = "routing_flags",
srcs = [
"routing_flags.cc",
],
hdrs = ["routing_flags.h"],
deps = [
":cp",
":routing_enums_cc_proto",
":routing_parameters",
":routing_parameters_cc_proto",
"//ortools/base",
"//ortools/base:map_util",
"//ortools/base:protoutil",
"//ortools/util:optional_boolean_cc_proto",
"@com_google_absl//absl/time",
"@com_google_protobuf//:protobuf",
],
)
cc_library(
name = "routing_types",
hdrs = ["routing_types.h"],

View File

@@ -22,7 +22,6 @@ def code_sample_cc(name):
"//ortools/constraint_solver:cp",
"//ortools/constraint_solver:routing",
"//ortools/constraint_solver:routing_enums_cc_proto",
"//ortools/constraint_solver:routing_flags",
],
)
@@ -36,6 +35,5 @@ def code_sample_cc(name):
"//ortools/constraint_solver:cp",
"//ortools/constraint_solver:routing",
"//ortools/constraint_solver:routing_enums_cc_proto",
"//ortools/constraint_solver:routing_flags",
],
)