Skip to content

Commit

Permalink
Export of internal Abseil changes
Browse files Browse the repository at this point in the history
--
62de74cdadc450a28eaa61a2db0912c97c8004dd by Abseil Team <absl-team@google.com>:

Move "internal/flag.*" files to the "internal" build target.

PiperOrigin-RevId: 268301646

--
72cd87aebd52fa7e7ee7cff0284f3761dd490945 by CJ Johnson <johnsoncj@google.com>:

Silences incorrect test failure for InlinedVector in MSVC debug mode.

PiperOrigin-RevId: 268234003
GitOrigin-RevId: 62de74cdadc450a28eaa61a2db0912c97c8004dd
Change-Id: I6b58e41561de6ac2e34cf5c1eedbf535dc468955
  • Loading branch information
Abseil Team authored and shaindelschwartz committed Sep 11, 2019
1 parent 97c1664 commit 5374c56
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 26 deletions.
4 changes: 4 additions & 0 deletions absl/container/inlined_vector_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1689,7 +1689,11 @@ TEST(AllocatorSupportTest, ScopedAllocatorWorksInlined) {
inlined_case.emplace_back();

int64_t absl_responsible_for_count = total_allocated_byte_count;

// MSVC's allocator preemptively allocates in debug mode
#if !defined(_MSC_VER)
EXPECT_EQ(absl_responsible_for_count, 0);
#endif // !defined(_MSC_VER)

inlined_case[0].emplace_back();
EXPECT_GT(total_allocated_byte_count, absl_responsible_for_count);
Expand Down
61 changes: 48 additions & 13 deletions absl/flags/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,30 @@ licenses(["notice"]) # Apache 2.0

cc_library(
name = "internal",
srcs = [
"internal/flag.cc",
],
hdrs = [
"internal/flag.h",
],
copts = ABSL_DEFAULT_COPTS,
linkopts = ABSL_DEFAULT_LINKOPTS,
visibility = [
"//absl/flags:__pkg__",
],
deps = [
":handle",
":registry",
"//absl/synchronization",
],
)

cc_library(
name = "program_name",
srcs = [
"internal/program_name.cc",
],
hdrs = [
"internal/path_util.h",
"internal/program_name.h",
],
copts = ABSL_DEFAULT_COPTS,
Expand All @@ -41,11 +60,27 @@ cc_library(
"//absl/flags:__pkg__",
],
deps = [
":path_util",
"//absl/strings",
"//absl/synchronization",
],
)

cc_library(
name = "path_util",
hdrs = [
"internal/path_util.h",
],
copts = ABSL_DEFAULT_COPTS,
linkopts = ABSL_DEFAULT_LINKOPTS,
visibility = [
"//absl/flags:__pkg__",
],
deps = [
"//absl/strings",
],
)

cc_library(
name = "config",
srcs = [
Expand All @@ -58,7 +93,8 @@ cc_library(
copts = ABSL_DEFAULT_COPTS,
linkopts = ABSL_DEFAULT_LINKOPTS,
deps = [
":internal",
":path_util",
":program_name",
"//absl/base:core_headers",
"//absl/strings",
"//absl/synchronization",
Expand Down Expand Up @@ -136,24 +172,21 @@ cc_library(
name = "flag",
srcs = [
"flag.cc",
"internal/flag.cc",
],
hdrs = [
"declare.h",
"flag.h",
"internal/flag.h",
],
copts = ABSL_DEFAULT_COPTS,
linkopts = ABSL_DEFAULT_LINKOPTS,
deps = [
":config",
":handle",
":internal",
":marshalling",
":registry",
"//absl/base",
"//absl/base:core_headers",
"//absl/strings",
"//absl/synchronization",
],
)

Expand All @@ -174,7 +207,8 @@ cc_library(
":config",
":flag",
":handle",
":internal",
":path_util",
":program_name",
"//absl/strings",
"//absl/synchronization",
],
Expand Down Expand Up @@ -209,8 +243,7 @@ cc_library(
deps = [
":config",
":flag",
":handle",
":internal",
":program_name",
":registry",
":usage",
":usage_internal",
Expand Down Expand Up @@ -295,7 +328,7 @@ cc_test(
copts = ABSL_TEST_COPTS,
linkopts = ABSL_DEFAULT_LINKOPTS,
deps = [
":internal",
":path_util",
"@com_google_googletest//:gtest_main",
],
)
Expand Down Expand Up @@ -328,7 +361,7 @@ cc_test(
copts = ABSL_TEST_COPTS,
linkopts = ABSL_DEFAULT_LINKOPTS,
deps = [
":internal",
":program_name",
"//absl/strings",
"@com_google_googletest//:gtest_main",
],
Expand Down Expand Up @@ -361,7 +394,8 @@ cc_test(
linkopts = ABSL_DEFAULT_LINKOPTS,
deps = [
":config",
":internal",
":path_util",
":program_name",
"//absl/strings",
"@com_google_googletest//:gtest_main",
],
Expand All @@ -378,8 +412,9 @@ cc_test(
deps = [
":config",
":flag",
":internal",
":parse",
":path_util",
":program_name",
":usage",
":usage_internal",
"//absl/memory",
Expand Down
60 changes: 47 additions & 13 deletions absl/flags/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,55 @@
absl_cc_library(
NAME
flags_internal
SRCS
"internal/flag.cc"
HDRS
"internal/flag.h"
COPTS
${ABSL_DEFAULT_COPTS}
LINKOPTS
${ABSL_DEFAULT_LINKOPTS}
DEPS
absl::flags_handle
absl::flags_registry
absl::synchronization
PUBLIC
)

# Internal-only target, do not depend on directly.
absl_cc_library(
NAME
flags_program_name
SRCS
"internal/program_name.cc"
HDRS
"internal/path_util.h"
"internal/program_name.h"
COPTS
${ABSL_DEFAULT_COPTS}
LINKOPTS
${ABSL_DEFAULT_LINKOPTS}
DEPS
absl::flags_path_util
absl::strings
absl::synchronization
PUBLIC
)

# Internal-only target, do not depend on directly.
absl_cc_library(
NAME
flags_path_util
HDRS
"internal/path_util.h"
COPTS
${ABSL_DEFAULT_COPTS}
LINKOPTS
${ABSL_DEFAULT_LINKOPTS}
DEPS
absl::strings
PUBLIC
)

absl_cc_library(
NAME
flags_config
Expand All @@ -46,7 +80,8 @@ absl_cc_library(
LINKOPTS
${ABSL_DEFAULT_LINKOPTS}
DEPS
absl::flags_internal
absl::flags_path_util
absl::flags_program_name
absl::core_headers
absl::strings
absl::synchronization
Expand Down Expand Up @@ -120,24 +155,21 @@ absl_cc_library(
flags
SRCS
"flag.cc"
"internal/flag.cc"
HDRS
"declare.h"
"flag.h"
"internal/flag.h"
COPTS
${ABSL_DEFAULT_COPTS}
LINKOPTS
${ABSL_DEFAULT_LINKOPTS}
DEPS
absl::flags_config
absl::flags_handle
absl::flags_internal
absl::flags_marshalling
absl::flags_registry
absl::base
absl::core_headers
absl::strings
absl::synchronization
)

# Internal-only target, do not depend on directly.
Expand All @@ -156,7 +188,8 @@ absl_cc_library(
absl::flags_config
absl::flags
absl::flags_handle
absl::flags_internal
absl::flags_path_util
absl::flags_program_name
absl::strings
absl::synchronization
)
Expand Down Expand Up @@ -193,8 +226,7 @@ absl_cc_library(
DEPS
absl::flags_config
absl::flags
absl::flags_handle
absl::flags_internal
absl::flags_program_name
absl::flags_registry
absl::flags_usage
absl::strings
Expand Down Expand Up @@ -285,7 +317,7 @@ absl_cc_test(
COPTS
${ABSL_TEST_COPTS}
DEPS
absl::flags_internal
absl::flags_path_util
gtest_main
)

Expand All @@ -297,7 +329,7 @@ absl_cc_test(
COPTS
${ABSL_TEST_COPTS}
DEPS
absl::flags_internal
absl::flags_program_name
absl::strings
gtest_main
)
Expand Down Expand Up @@ -326,7 +358,8 @@ absl_cc_test(
${ABSL_TEST_COPTS}
DEPS
absl::flags_config
absl::flags_internal
absl::flags_path_util
absl::flags_program_name
absl::strings
gtest_main
)
Expand All @@ -341,7 +374,8 @@ absl_cc_test(
DEPS
absl::flags_config
absl::flags
absl::flags_internal
absl::flags_path_util
absl::flags_program_name
absl::flags_parse
absl::flags_usage
absl::memory
Expand Down

0 comments on commit 5374c56

Please sign in to comment.