This commit is contained in:
Laurent Perron
2025-04-02 19:27:58 +02:00
parent f54ac85858
commit af680232d2
4 changed files with 4 additions and 4 deletions

View File

@@ -186,6 +186,7 @@ cc_library(
deps = [
":base",
":logging",
"@abseil-cpp//absl/strings",
],
)

View File

@@ -562,5 +562,7 @@ cc_library(
cc_library(
name = "scheduling",
hdrs = ["scheduling.h"],
deps = ["@abseil-cpp//absl/log:check"],
deps = [
"@abseil-cpp//absl/log:check",
],
)

View File

@@ -19,8 +19,6 @@
#include <string>
#include <utility>
#include "absl/flags/flag.h"
#include "absl/log/die_if_null.h"
#include "absl/strings/str_cat.h"
ABSL_FLAG(bool, time_limit_use_usertime, false,

View File

@@ -27,7 +27,6 @@
#include "absl/flags/declare.h"
#include "absl/flags/flag.h"
#include "absl/log/check.h"
#include "absl/log/log.h"
#include "absl/synchronization/mutex.h"
#include "absl/time/clock.h"
#include "absl/time/time.h"