Files
ortools-clone/ortools/port/BUILD.bazel
2025-05-26 15:07:03 +02:00

69 lines
1.6 KiB
Python

# Copyright 2010-2025 Google LLC
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
package(default_visibility = ["//visibility:public"])
cc_library(
name = "sysinfo",
srcs = ["sysinfo.cc"],
hdrs = ["sysinfo.h"],
deps = [
"//ortools/base",
"//ortools/base:sysinfo",
],
)
cc_library(
name = "proto_utils",
srcs = ["proto_utils.cc"],
hdrs = ["proto_utils.h"],
deps = [
"//ortools/base",
"//ortools/util:parse_proto",
"@abseil-cpp//absl/log",
"@abseil-cpp//absl/strings",
"@protobuf",
],
)
cc_library(
name = "utf8",
hdrs = ["utf8.h"],
deps = [
"//ortools/base",
"//ortools/base:encodingutils",
],
)
cc_library(
name = "file",
srcs = [
"file.cc",
],
hdrs = [
"file.h",
],
deps = [
"//ortools/base:file",
"@abseil-cpp//absl/status",
"@abseil-cpp//absl/strings",
"@abseil-cpp//absl/strings:str_format",
"@abseil-cpp//absl/time",
],
)
cc_library(
name = "scoped_std_stream_capture",
hdrs = ["scoped_std_stream_capture.h"],
)