Export of internal Abseil changes

--
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
This commit is contained in:
Abseil Team 2019-09-10 13:50:52 -07:00 committed by Shaindel Schwartz
parent 97c1664b4b
commit 5374c56e51
3 changed files with 99 additions and 26 deletions

View file

@ -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,
@ -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 = [
@ -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",
@ -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",
],
)
@ -174,7 +207,8 @@ cc_library(
":config",
":flag",
":handle",
":internal",
":path_util",
":program_name",
"//absl/strings",
"//absl/synchronization",
],
@ -209,8 +243,7 @@ cc_library(
deps = [
":config",
":flag",
":handle",
":internal",
":program_name",
":registry",
":usage",
":usage_internal",
@ -295,7 +328,7 @@ cc_test(
copts = ABSL_TEST_COPTS,
linkopts = ABSL_DEFAULT_LINKOPTS,
deps = [
":internal",
":path_util",
"@com_google_googletest//:gtest_main",
],
)
@ -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",
],
@ -361,7 +394,8 @@ cc_test(
linkopts = ABSL_DEFAULT_LINKOPTS,
deps = [
":config",
":internal",
":path_util",
":program_name",
"//absl/strings",
"@com_google_googletest//:gtest_main",
],
@ -378,8 +412,9 @@ cc_test(
deps = [
":config",
":flag",
":internal",
":parse",
":path_util",
":program_name",
":usage",
":usage_internal",
"//absl/memory",