Skip to content

Commit

Permalink
value_test: add includes for recently added includes.
Browse files Browse the repository at this point in the history
Makes clangd less slow when opening the file.

PiperOrigin-RevId: 720279534
  • Loading branch information
hzeller authored and copybara-github committed Jan 27, 2025
1 parent 6f99511 commit 112e0e0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions xls/ir/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -1099,16 +1099,23 @@ cc_test(
name = "value_test",
srcs = ["value_test.cc"],
deps = [
":bit_push_buffer",
":bits",
":ir_parser",
":type",
":type_manager",
":value",
":value_utils",
":xls_value_cc_proto",
"//xls/common:proto_test_utils",
"//xls/common:xls_gunit_main",
"//xls/common/fuzzing:fuzztest",
"//xls/common/status:matchers",
"//xls/data_structures:inline_bitmap",
"@com_google_absl//absl/log",
"@com_google_absl//absl/status",
"@com_google_absl//absl/status:status_matchers",
"@com_google_absl//absl/status:statusor",
"@com_google_absl//absl/types:span",
"@com_google_googletest//:gtest",
"@com_google_protobuf//:protobuf",
Expand Down
7 changes: 7 additions & 0 deletions xls/ir/value_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,21 @@
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "xls/common/fuzzing/fuzztest.h"
#include "absl/log/log.h"
#include "absl/status/status.h"
#include "absl/status/status_matchers.h"
#include "absl/status/statusor.h"
#include "absl/types/span.h"
#include "google/protobuf/text_format.h"
#include "xls/common/proto_test_utils.h"
#include "xls/common/status/matchers.h"
#include "xls/data_structures/inline_bitmap.h"
#include "xls/ir/bit_push_buffer.h"
#include "xls/ir/bits.h"
#include "xls/ir/ir_parser.h"
#include "xls/ir/type.h"
#include "xls/ir/type_manager.h"
#include "xls/ir/value_utils.h"
#include "xls/ir/xls_value.pb.h"

namespace xls {
Expand Down

0 comments on commit 112e0e0

Please sign in to comment.