cc_project_template_gn

A gn, ninja, and googletest-based C++ project template
git clone https://git.bracken.jp/cc_project_template_gn.git
Log | Files | Refs | Submodules | README | LICENSE

commit ea2df65cd7ecc28aa782b7623f7bb9c3dac7d559
parent c4e7232b4be742b9e7288c5341e74835ae882044
Author: Chris Bracken <chris@bracken.jp>
Date:   Mon, 21 Nov 2022 16:19:41 -0800

Udpate googletest to 519beb0e52c842729b4b53731d27c0e0c32ab4a2

Diffstat:
Msecondary/third_party/googletest/BUILD.gn | 17+++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/secondary/third_party/googletest/BUILD.gn b/secondary/third_party/googletest/BUILD.gn @@ -42,10 +42,13 @@ source_set("gtest_internal_headers") { visibility = [ ":*" ] testonly = true sources = [ + "googletest/include/gtest/gtest-assertion-result.h", "googletest/include/gtest/gtest-death-test.h", + "googletest/include/gtest/gtest-matchers.h", "googletest/include/gtest/gtest-message.h", "googletest/include/gtest/gtest-param-test.h", "googletest/include/gtest/gtest-printers.h", + "googletest/include/gtest/gtest-spi.h", "googletest/include/gtest/gtest-test-part.h", "googletest/include/gtest/gtest-typed-test.h", "googletest/include/gtest/gtest_pred_impl.h", @@ -56,13 +59,10 @@ source_set("gtest_internal_headers") { "googletest/include/gtest/internal/gtest-death-test-internal.h", "googletest/include/gtest/internal/gtest-filepath.h", "googletest/include/gtest/internal/gtest-internal.h", - "googletest/include/gtest/internal/gtest-linked_ptr.h", - "googletest/include/gtest/internal/gtest-param-util-generated.h", "googletest/include/gtest/internal/gtest-param-util.h", "googletest/include/gtest/internal/gtest-port-arch.h", "googletest/include/gtest/internal/gtest-port.h", "googletest/include/gtest/internal/gtest-string.h", - "googletest/include/gtest/internal/gtest-tuple.h", "googletest/include/gtest/internal/gtest-type-util.h", "googletest/src/gtest-internal-inl.h", ] @@ -83,8 +83,10 @@ static_library("gtest") { ] sources = [ "googletest/src/gtest-all.cc", + "googletest/src/gtest-assertion-result.cc", "googletest/src/gtest-death-test.cc", "googletest/src/gtest-filepath.cc", + "googletest/src/gtest-matchers.cc", "googletest/src/gtest-port.cc", "googletest/src/gtest-printers.cc", "googletest/src/gtest-test-part.cc", @@ -115,21 +117,20 @@ executable("gtest_all_test") { sources = [ "googletest/test/googletest-death-test-test.cc", "googletest/test/googletest-filepath-test.cc", - "googletest/test/googletest-linked-ptr-test.cc", "googletest/test/googletest-message-test.cc", "googletest/test/googletest-options-test.cc", + "googletest/test/googletest-param-test2-test.cc", "googletest/test/googletest-port-test.cc", "googletest/test/googletest-printers-test.cc", "googletest/test/googletest-test-part-test.cc", "googletest/test/gtest-typed-test2_test.cc", "googletest/test/gtest-typed-test_test.cc", - "googletest/test/gtest-typed-test_test.h", + "googletest/test/gtest_dirs_test.cc", "googletest/test/gtest_main_unittest.cc", "googletest/test/gtest_pred_impl_unittest.cc", - "googletest/test/gtest_prod_test.cc", + "googletest/test/gtest_skip_test.cc", + "googletest/test/gtest_sole_header_test.cc", "googletest/test/gtest_unittest.cc", - "googletest/test/production.cc", - "googletest/test/production.h", ] configs += [ ":gtest_private_config" ] deps = [